Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
eliot
/
Fusion
:
test01.html
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php <?php echo "lulu...."; // if (isset($_POST['form_submitted'])) ?> <!DOCTYPE html> <html lang="en"> <head> <title> TalkersCode </title> </head> <body> <form action="#" method="post"> <table border="2px" > <tr> <th>Column one</th> <th> Column Two</th> <th> Column Three </th> </tr> <?php for($i=1;$i<=7;$i++) { ?> <tr> <td> <input type="text" name="columnone<?php echo $i; ?>" /> </td> <td> <input type="text" name=" columntwo<?php echo $i;?>" /> </td> <td> <input type="text" name=" columnthree<?php echo $i;?>" /> </td> </tr> <?php } ?> </table> <input type="hidden" name="form_submitted" value="1" <input type="submit" value="Submit"/> </form> </body> </html>