File "test01.html"
Full Path: /home/analogde/www/eliot/Fusion/test01.html
File size: 686 bytes
MIME-type: text/x-php
Charset: utf-8
<?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>