Ver Mensaje Individual
  #3 (permalink)  
Antiguo 06/12/2011, 19:28
mick089
 
Fecha de Ingreso: febrero-2009
Mensajes: 175
Antigüedad: 15 años, 8 meses
Puntos: 0
Respuesta: Sistema de surcripcion para web

Ya he creado mi mini formulario. con subcripcion

Pero despues de completar y enviar los datos, no me aparecen en mi base de datos. Aqui os dejo el codigo.

Gracias.


Código PHP:
<?php
$email
=$_POST['email'];
$nombre=$_POST['nombre'];
$pais=$_POST['pais'];

if (
$nombre!= "" && $email!= "" && $pais!= "" )
{
mysql_connect ("miservidor","miusuario","micontraseña");
mysql_select_db ("mibd");

mysql_query("INSERT INTO tabla (email,nombre,pais) VALUES('$email','$nombre','$pais')");
}
?>
Código HTML:
<div id="apDiv21"> <form id="form1" name="form1" method="post" action="">
    <table width="250" border="0">
      <tr>
        <td width="162">Email</td>
        <td width="11">&nbsp;</td>
        <td width="313"><label>
          <input type="text" name="email" id="email" />
        </label></td>
      </tr>
      <tr>
        <td>Nombre</td>
        <td>&nbsp;</td>
        <td><label>
          <input type="text" name="nombre" id="nombre" />
        </label></td>
      </tr>
      <tr>
        <td>Pais</td>
        <td>&nbsp;</td>
        <td><label>
          <input type="text" name="pais" id="pais" />
        </label></td>
      </tr>
      <tr>
        <td colspan="3"><label>
          <input type="submit" name="button" id="button" value="Enviar" />
        </label></td>
      </tr>
    </table>
  </form></div>