I have simple input form (input.htm) and then post the variabel to another page (show.php).
file : input.htm
<form action="show.php" method="POST">
<input name="contact name" value="">
<input type="submit" name="Submit" value="Submit">
</form>
file : show.php
<?
$name=$HTTP_POST_VARS["contact name"];
echo "Contact name:".$name;
?>
I knew the problem is in <input name="contact name" value="">. How to pass this variabel (contact name)?? should i use urlencode or what?
thanks for the answer!