Just wondering it i could get anyones help with these steps.
Thanks in advanced.
-
Create a page called lab1.php -
In lab1.php, create a Form with the following inputs:
-
Dropdown with options from 1 to 10, labeled “Rows:” -
Another Dropdown with options from 1 to 10, labeled “Columns:” -
Submit button
-
-
The form should submit values to “table.php” using the GET method -
Create a page called table.php -
In table.php, read the values submitted from lab1.php by referencing the appropriate indexes in
the $_GET array. -
In table.php, construct a table that has:
-
The amount of rows entered in part 2a -
The amount of columns entered in part 2b -
Your first name in every ODD cell(1,3,5,7...) . Your name can be a string literal
-
7. Add the following styles to the top of the table.php page:
<style> td{
border: 1px solid black; }
</style>











