The following code does not work:
<? if($my_field) { ?>
Your field contained :
<? echo $my_field; ?>
<br><br>
<? } ?>
<FORM method="POST" action="my_page.php">
<input type="text" name="my_field">
<input type="Submit" value="OK">
</FORM>
I all I see when the form reposts is the form not what I put in the text box. Its as if forms are not working on my php. Could I have configured it to leave out form support?!??!??
A.