Here is the code on the page before:
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link href="stylesheet" rel="stylesheet" type="text/css">
</head>
<body>
<div align="center">
<table width="730" border="0">
<tr>
<td><div align="center"><img src="title.gif" width="716" height="51"></div></td>
</tr>
</table>
<br>
<table width="700" border="0">
<tr>
<td width="175"><div align="center"><a href="index.php">Home</a></div></td>
<td width="175"><div align="center"><a href="tables.php">Tables</a></div></td>
<td width="175"><div align="center"><a href="stock.php">Stock</a></div></td>
<td width="175"><div align="center"><a href="help.php">Help</a></div></td>
</tr>
</table>
<hr width="700">
<table width="700" border="0">
<tr>
<td><table width="300" border="0">
<tr>
<td>Table Name: <?php echo($table_name); ?></td>
</tr>
</table>
<br> <table width="375" border="0">
<tr>
<td width="125" bgcolor="#FFF2F9"><div align="center">Field</div>
</td>
<td width="125" bgcolor="#F4EAFF"><div align="center">Type</div>
</td>
<td width="125" bgcolor="#FFF2F9"><div align="center">Auto Increment</div>
</td>
</tr>
</table> <p>
<?php
$row_num=0;
while ($row_num<$number_cols) {
print "<form action=\"make_table.php\" method=\"post\" name=\"info_insert\">";
print "<table width=375>";
print "<tr>";
print "<td width=125 align=center bgcolor=#FFF2F9><input type=text size=13 name=field$row_num></td>";
print "<td width=125 align=center bgcolor=#F4EAFF><select name=menu$row_num><option value=\"text\">Text</option><option value=\"int\">Integer</option></select></td>";
if ($row_num==0) {print "<td width=125 align=center bgcolor=#FFF2F9><input type=checkbox name=auto></td>";}
print "</tr>";
print "</table>";
$row_num++;
}
?>
<br>
<br>
<?php print "<input type=\"hidden\" name=\"number_cols\" value=\"$number_cols\">"; print "<input type=\"hidden\" name=\"table_name\" value=\"$table_name\">"; ?>
<input type="submit" name="Submit" value="Submit"></form>
<br>
</p>
</td>
</tr>
</table>
<br>
<table width="730" border="0">
<tr>
<td><div align="center"><img src="bottombar.gif" width="716" height="31"></div>
</td>
</tr>
</table>
</div>
</body>
</html>