se podria llevar a correr esa funcion usando un if? if else?, etc???
algo asi no puedo hacer correr??
Código PHP:
<html>
<body>
<br><center>Formulario(Envío de MP)</center></br>
<form action="insertar-registro.php" method="POST">
Mensaje:<textarea name="mensaje" cols="30" rows="3"></textarea><p>
Selección: <input name="col" type="radio" value="si"/> si
<input name="col" type="radio" value="no" checked/> no
<input name="col" type="radio" value="nose"/> nose <p>
Opción: <input type="checkbox" name="opc" value="ok"/>OK</input>
<input type="checkbox" name="opc" value="nada" checked/>Nada</input> <p>
Teléfono: <input type="text" name="telefono">Acuérdate de usar solo nú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";
$telefono = $_POST['telefono'];
$email = $_POST['email'];
$col = $_POST['col'];
$opc = $_POST['opc'];
if ($telefono="" or $email="") {
echo"Los campos: telefono y email, no pueden estar vacios";
}
mysql_query("insert into clientesl2(mensaje,seleccion, opcion, telefono, email) values ('{$_REQUEST['mensaje']}','$col','$opc','{$_REQUEST['telefono']}','{$_REQUEST['email']}')") or die("no anda el el insert" .mysql_error());
?>
<html>
<body>
<b><hl><center>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<a href="index.html"><button>indice</button></a>
</center></hl></b><br>
</body>
</html>