Ver Mensaje Individual
  #6 (permalink)  
Antiguo 16/03/2011, 14:19
SantiagoFlash
 
Fecha de Ingreso: octubre-2010
Ubicación: San juan Argentina
Mensajes: 95
Antigüedad: 14 años, 1 mes
Puntos: 0
Respuesta: Problema con send.php

Lo que hice fue traspasar los codigos a los qe tenia yo y reemplazarlos y les cambie el nombre de destino pero hay un problema la imagen sigue sin apareceer , Coloco cada codigo asi verificas si hay algo mal

este se llama contacto.html
Código HTML:
Ver original
  1. <form name="formulario" action="send.php" method="post">
  2. Nombre: (obligatorio)<br /> <input name="nombre" type="text" size="60"><br />
  3.  
  4. Teléfono (obligatorio): <br /> <input name="telefono" type="text" size="60"><br />
  5.  
  6. email: (obligatorio)<br /> <input name="email" type="text" size="60"><br />
  7.  
  8. Asunto: (obligatorio)<br /> <input name="asuntow" type="text" size="60"><br />
  9.  
  10. Comentarios: (obligatorio)<br /><textarea class="texto" name="comentarios" rows="4" cols="70"></textarea>
  11. <br />(obligatorio)<br />
  12. <img src="captcha.php" width="100" height="30"><br />
  13. <input name="tmptxt" type="text" size="12">
  14. <br /><hr />
  15.   <p>Aceptas las condiciones:<br />
  16.     <a href="terminos.php">Lea los Términos y condiciones de:</a> <strong>sitio web</strong></p>
  17.   <p>Si (obligatorio)
  18.     <input name="aceptas" type="checkbox" id="chequea" />
  19.   No podr&aacute; enviar su consulta si no acepta los T&eacute;rminos.<br />
  20.   <br />
  21.   <label>
  22.     <input type="submit" name="button" id="button" value="Enviar">
  23.   </label>
  24.   <br />
  25.   </p>
  26.     </form>

Este Se llama send.php
Código PHP:
Ver original
  1. <?php session_start();
  2.     if ($_SESSION['tmptxt'] != $_POST['tmptxt']) {
  3.     echo "<script>window.alert('IMAGEN DE SEGURIDAD INVALIDA');</script>;";;
  4.     echo "<script>location.href='javascript:history.back()' ;</script>;";
  5.     exit();
  6.     }
  7.     if (!($_POST['nombre'])){
  8.     echo "<script>window.alert('COLOQUE SU NOMBRE');</script>;";;
  9.     echo "<script>location.href='javascript:history.back()' ;</script>;";
  10.     exit();
  11.     }
  12.     if (!($_POST['asuntow'])){
  13.     echo "<script>window.alert('COLOQUE SU NOMBRE');</script>;";;
  14.     echo "<script>location.href='javascript:history.back()' ;</script>;";
  15.     exit();
  16.     }
  17.     if (!($_POST['telefono'])){
  18.     echo "<script>window.alert('COLOQUE UN NÚMERO DE TELÉFONO DE CONTACTO');</script>;";;
  19.     echo "<script>location.href='javascript:history.back()' ;</script>;";
  20.     exit();
  21.     }



y los demas como me los mandaste vos . estoy trabajando con dreamweaver