Euhm I new at php and I have a question.
I would like to build a page with a form but if I use this, it doesn't work:
in one file I put:
<html>
<body>
<form action="vieuw.php" method="POST">
<input type="text" name="name">
<input type="text" name="age">
<input type="submit" value="Send form">
</form>
</body>
</html>
in the vieuw.php file I put:
<html>
<body>
<?
echo $name;
echo $age;
?>
</body>
</html>
but if I try it and fill in the form it opens the vieuw.php but I don't see anything... can someone plz tell me what I'm doing wrong?
I use apache 1.3.26 and php 4.2.3 on my pc