Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

create a php file named testCreateTable4.php that defines a function named creat

ID: 3621858 • Letter: C

Question


create a php file named testCreateTable4.php that defines a function named create createTable4 that expects 4 values as arguments.

It should return a string composed of the html tags and content of a one row table with 4 cells across.

each of the four values in the arguments should be displayed in the 4 cells

After the function is declared, write two tests of it:

echo createTable4("one","two","three","four");
echo createTable4(100,200,300,400);

This should output something that looks like this:



one two three four
100 200 300 400



Note that the output above has uses <table><tr>and <td> tags here appropriate.

Explanation / Answer

Remember to put it into a .php file...