Tema: Validacion
Ver Mensaje Individual
  #3 (permalink)  
Antiguo 27/10/2012, 18:55
Jennifert
 
Fecha de Ingreso: septiembre-2012
Mensajes: 112
Antigüedad: 12 años, 6 meses
Puntos: 1
Respuesta: Validacion

Hola cuasatar, lo que pasa es un formulario simple que me valida ciertos campos, pero tengo que ponerle en el action el mismo nombre del documento en donde esta, pero ocupo tomar los valores en otro doc.php pero si le cambio el action por doc.php ya no me valida,.osea si lleno un campo mal a lado me aparece los datos que estoy poniendo mal...

Código:
<html>
    <head>
        <title>Contacto</title>
        <link rel='stylesheet' href='estilos.css'>
        <script src='http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js'></script>
        <script src='funciones.js'></script>
    </head>
    <body>
    <?php
        if(isset($_POST['boton'])){
            if($_POST['nombre'] == ''){
                $errors[1] = '<span class="error">Ingrese su nombre</span>';
            }else if($_POST['email'] == '' or !preg_match("/^[a-zA-Z0-9_\.\-]+@[a-zA-Z0-9\-]+\.[a-zA-Z0-9\-\.]+$/",$_POST['email'])){
                $errors[2] = '<span class="error">Ingrese un email correcto</span>';
            }else if($_POST['asunto'] == ''){
                $errors[3] = '<span class="error">Ingrese un asunto</span>';
            }else if($_POST['mensaje'] == ''){
                $errors[4] = '<span class="error">Ingrese un mensaje</span>';
            }else{
                echo'todo bien';
            }
        }
    ?>
        <form class='contacto' method='POST' action='ems.php'>
            <div><label>Tu Nombre:</label><input type='text' class='nombre' name='nombre' value='<?php echo $_POST['nombre']; ?>'><?php echo $errors[1] ?></div>
            <div><label>Tu Email:</label><input type='text' class='email' name='email' value='<?php echo $_POST['email']; ?>'><?php echo $errors[2] ?></div>
            <div><label>Asunto:</label><input type='text' class='asunto' name='asunto' value='<?php echo $_POST['asunto']; ?>'><?php echo $errors[3] ?></div>
            <div><label>Mensaje:</label><textarea rows='6' class='mensaje' name='mensaje'><?php echo $_POST['mensaje']; ?></textarea><?php echo $errors[4] ?></div>
            <div><input type='submit' value='Envia Mensaje' class='boton' name='boton'></div>
            <?php echo $result; ?>
        </form>
    </body>
</html>