Este es mi script:
Código PHP:
<html>
<head>
<title>Documento sin título</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<?php
if (!$_POST){
?>
<form method="post" action="archivo.php">
<input name="campo_uno" type="text"/>
<input type="submit" name="boton" value="Enviar">
</form>
<?php
}
elseif (isset($_POST['campo_uno']) && $_POST['campo_uno']!="") {
echo 'Hola '. $_POST['campo_uno'];
}
else {
if (isset($_POST['campo_uno'])) {
echo "Rellena los campos";
}
}
?>
</body>
</html>
Es un script muy sencillo porque estoy empezando con PHP... Paciencia conmigo.