$_POST in php 5.3.5 does not work
- by naji
dear all
iam working in php 5.3.5
this is the html file
<html>
<body>
<form action="welcome.php" method="post">
Name: <input type="text" name="fname" />
Age: <input type="text" name="age" />
<input type="submit" />
</form>
</body>
</html>
and this is the php file
<html>…