Tema: php y mysql
Ver Mensaje Individual
  #14 (permalink)  
Antiguo 22/10/2009, 12:02
Avatar de Fairy_Boy
Fairy_Boy
 
Fecha de Ingreso: octubre-2009
Ubicación: Kokiri Forest
Mensajes: 235
Antigüedad: 15 años, 4 meses
Puntos: 5
Respuesta: php y mysql

ING.PHP
<form id="form1" name="form1" method="post" action="mos.php">
<p>
<label>
<input type="text" name="texto" id="texto" />
</label>
</p>
<p>
<label>
<input type="submit" name="enviar" id="enviar" value="Enviar" />
</label>
</p>
</form>


MOS.PHP
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Documento sin título</title>
</head>

<body>
<?php
$datos = $_POST['texto'];
echo $datos;
?>
</body>
</html>

si esto ya no te funciona...nose k mas xDDD