Formulario.html
Código HTML:
<center> <p> </p> <table width="382" height="491" border="0"> <tr> <td><form name="form1" method="post" action="enviar.php"> <table width="380" height="46" border="1"> <tr> <center><td width="281"><table width="369" height="99" border="0"> <tr> <td width="173">Texto a Mostrar:</td> <td width="155"><input name="nombre" type="text" id="nombre"></td> </tr> <tr></tr> <tr></tr> <tr> <td><input type="submit" name="Submit" value="Mostrar"></td> <td> </td> </tr> </table></td></center> </tr> </table> </form></td> </tr> </table> </center>
Enviar.php
Código PHP:
<?php
//Conectar a Mysql
mysql_connect("db287.1and1.es","dbo328902348","rstow-es");
//seleccionar
mysql_select_db("prueva");
//Imprimir en Base de datos
mysql_query("INSERT INTO prueva (campoTexto) VALUES ('".$_POST['nombre']."')");
?>