This topic is locked

Adding Text To Form

10/17/2005 8:32:30 PM
PHPRunner General questions
jimhnet author

Is there an easy way to add text to a form other than going to the header.
Let's say for instance I want to get someones agreement in a field to a particular text(in this instance an agreement to represent them). I would prefer to place it just above that particular field in html. I don't see an easy way to insert the html in the body of the form between fields, so I have been putting it in the header.
Thanks
Jim Freeman

admin 10/18/2005

Jim,
to insert html code between fields open ..._add.php page with any text editor and find the table containing fields.

Put this code snippet between table rows, after echo "</td></tr>";

?>

<tr>

<td colspan=2>

Put your <b>HTML code</b> here

</td>

</tr>

<?php