Question: Save the first page as index.htm (or index.php). Use a HTML form to capture user input. Submit the form to a second file index_process.php using
Save the first page as index.htm (or index.php). Use a HTML form to capture user input. Submit the form to a second file index_process.php using the POST method. The second page contains a link to go back to the first page.
Write a program that asks the user for Pos row and column numbers for generating magic rectangles.
Capture row and column numbers.
Generate the magic rectangles shown using nested loops (two-dimensional loops).
The first rectangle and related calculation must be generated by nested for loops. for () { for () {} }
The second rectangle must be generated by nested while loops. while () { while () {} }
The third rectangle must be generated by nested dowhile loops. do { do {} while () }


Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
