Ver Mensaje Individual
  #7 (permalink)  
Antiguo 02/08/2011, 11:02
thedarking
 
Fecha de Ingreso: julio-2011
Ubicación: Argentina
Mensajes: 38
Antigüedad: 13 años, 8 meses
Puntos: 0
Pregunta formulario+restricciones

Hola Gente! :D

no encontre en el foro de como hacer que en un campo(EJ:Telefono)
solo se pongan numeros con funcion php sin letras ni simbolos ni vacio

en conclusion tngo esto:
Código PHP:
<html>
<
body>
<
br><center>Formulario(Env&iacute;o de MP)</center></br>
<
form action="insertar-registro.php" method="POST">
            
            
Mensaje:<textarea name="mensaje" cols="30" rows="3"></textarea><p>
            
            
Selecci&oacute;n:    <input name="col" type="radio" value="si"/>    si                &nbsp;&nbsp;
                                <
input name="col" type="radio" value="no" checked/>    no        &nbsp;&nbsp;
                                <
input name="col" type="radio" value="nose"/>    nose        &nbsp;&nbsp;<p>
            
            
Opci&oacute;n:        <input type="checkbox" name="opc" value="ok"/>OK</input>&nbsp;&nbsp;
                                <
input type="checkbox" name="opc" value="nada" checked/>Nada</input>&nbsp;&nbsp;<p>
            
            
Tel&eacute;fono:    <input type="text" name="telefono">Acu&eacute;rdate de usar solo n&uacute;meros<p>
            
            
E-Mail:                <input type="text" name="email"><p>
<
input name="enviar" type="submit" value="enviar">
<
input type="reset" name="limpiar">
</
form>
</
body>
</
html
Código PHP:
<?php

include"conexion.php";
$col $_POST['col'];
$opc $_POST['opc'];
mysql_query("insert into clientesl2(mensaje,seleccion, opcion, telefono, email) values ('{$_REQUEST['mensaje']}','$col','$opc','{$_REQUEST['telefono']}','{$_REQUEST['email']}')");  
?>

<html>
    <body>
        <b><hl><center><a href="index.html"><button>indice</button></a></center></hl></b><br>
    </body>
</html>
Tengo q hacer en total q ni la parte de seleccion ni telefono este vacia, y tambien q el campo telefono solo acepte numeros

Gracias por cualquier ayuda y orientacion