somebody explains to me: why this script doesnt work???
:huh:
<html>
<body>
<?php
if ($submit) {
echo "Información introducida.\n";
} else{
?>
<form method="post" action="<?php echo"$PHP_SELF"?>">
Nombre:<input type="Text" name="nombre"><br>
<input type="Submit" name="submit" value="Enter information">
</form>
<?php
} // end if
?>
</body>
</html>
:kwasny: