Ver Mensaje Individual
  #8 (permalink)  
Antiguo 25/07/2011, 20:49
charlescuellar
 
Fecha de Ingreso: abril-2008
Mensajes: 310
Antigüedad: 16 años
Puntos: 4
Respuesta: como evitar el spam en mi formulario

andresdzphp
el codigo php va en enviar.php??


Código PHP:
Código PHP:
Ver original
  1. <?php
  2. if ($_POST['verificacion'] != ""){
  3. // Es un SPAMbot
  4. exit();
  5. }else{
  6. // Es un usuario real, proceder a enviar el formulario.
  7. }
  8. ?>