November 1st, 2000, 02:29 PM
-
I am using a basic php email form and I want the page that it bumps you to to display the variables entered in the form. I am having no problem getting to do it on a blank page, but I need to have it display them inside of a table. Could someone tell me how I can write the php code so that it won't get a parse error when I put in the commands to form a table?
November 1st, 2000, 02:44 PM
-
<table>
<tr>
<?php
echo ("<td>$myvariable</td>n");
?>
</tr>
</table>
November 1st, 2000, 02:50 PM
-