Lets say i create a testeo.html page with this lines inside:
<form method=POST action="test.php">
<input type="text" name="name">
<input type="submit" name="send">
</form>
now in the test.php i set this:
<?php
echo $name;
?>
this is an easy example of the problem, this wont work on the server, other php lines do but this wont, no error appear or something just white page, wich means its a problem with php getting the input info into a var. this works perfectly on a server with php 4.4, so i just wonder and cant find what im doing wrong.
thanks lots for the help