Forum Moderators: coopster
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<table width="776" border="1">
<tr>
<td width="197">Name</td>
<td width="563" bgcolor="#00FFFF"> </td>
</tr>
<tr>
<td>Address</td>
<td bgcolor="#006699"> </td>
</tr>
<tr>
<td>Comments</td>
<td bgcolor="#00CCFF"> </td>
</tr>
<tr>
<td>Delivery</td>
<td bgcolor="#006699"> </td>
</tr>
<tr>
<td>Meals</td>
<td bgcolor="#00FFCC"> </td>
</tr>
<tr>
<td> </td>
<td bgcolor="#006699"> </td>
</tr>
<tr>
<td> </td>
<td bgcolor="#00CCFF"> </td>
</tr>
</table>
</body>
</html>
if you have a form on the previous page the target of the form should be the name of this page.
pagewithform.htm:
...
<form target="pagewithtable.php" method="post">
...
followed by your form fields
...
</form>
pagewithtable.php
<?php
if(isset($_POST['formfieldname'])){
$myvar=$_POST['formfieldname'];
}
...
repeat this as many times as you have variables
?>
<html>
<head>
...
<tr>
<td>delivery</td>
<td><?php echo $mydeliveryvar;?></td>
</tr>
...
hope this helps