Hi all. I have a formular in a HTML File(x.html) which will call a php script(go.php). Normally, the variable in the form (let us say age:
<form action="go.php">
Age:<input type="text" name="age"/>
<input type="submit" name="submit" value="Send"/>
</form>
will be available in the go.php. But it doesn't find it,e.g. by using in go.php:
echo $age;
Does anybody know, where the problem is?
Thanks friends