I have a web page with a table and the fields are inside the tables, so that I can line them up perfectly....
I was wandering if somebody could tell me how to insert values from a database into the fields.
I have tried to use the echo and print commands as follows but get errors....
<tr>
<td align="left" valign="middle"><font face="Times New Roman, Times, serif">
Name :</font></td>
<td><font face="Times New Roman, Times, serif">
<?php
print ("<input type="text" value ="$valueFromDB" name="name" size="30" maxlength="30">");
?>
</font></td>
</tr>
But this gets me a parse error in the line containing the print command...
Can anyone please help me??
Thanks,
Ian
i.e printing out the