I want to capture and print data from a form when the submit button is pressed. I have this:
<?php
if(isset($_POST['submit'])){
$thequestion = $HTTP_POST_VARS['question'];
print "$thequestion";
print 'Answer has been recorded - Click on another structure to continue';
}
?>
It does not seem to be executed - updated values are not printed when the form is resubmitted.
Any help appreciated.
gepner@monmouth.edu