Hi all,
I was wondering if somebody could help me with the following problem:
I created a form, like this:
<form name="form1" action="threadform.php" method="post">
<input type="text" name="MyName">
<input type= "submit" name="Submit" value="Send info!"
</form>
The php section of the"threadform.php" file looks like this:
<?php
print "Your name is $MyName";
?>
You would assume that when I fill in my name, Roderick, the php file would return "Your name is Roderick". BUt somehow It won't work. I've tried several options, like printf and echo for printing. I even tried the method "GET". It still doesn't work. I have no clue what it could be.
I'm running PHP 4.3.3RC1 on Apache 2.0.46 server. Could it be a bug in the PHP module? Am I doing something really stupid? Who knows? I cann't find any information about a possible bug or something in the release notes. Maybe I should downgrade my Apache / php version?
I hope some-one can help me.
Thanks in advance.
Kind regards,
Roderick Gottgens