Ok what I am trying to do is on my website I am wanted people to go to the form page fill it out and when they hit submit place the text onto another page on my site. I did a test on it and it worked but only I can see it and no one else can. Then the texted just disappeared. I called a buddy of my and he did it on his computer and it worked but I could not see it. I refreshed my browser several times. The following is what I have so far some of you can probably tell me exactly what is wrong:
/form.html
<form action="agenda.php" method="post">
Type Agenda Information Here:<br>
<p> <input type="text" name="agenda" <br size="46"></p>
<p><br>
<input type="submit" value="Submit"></p>
</form>
/agenda.php (where the text should appear)
<?php echo $_POST['agenda'];
?>
Could Someone plz help.
Thanks DM
