<legend>Actualizar Informacion</legend> <p align="justify"> Estimado docente por normas de seguridad es necesario que usted cuente con una dirección de <strong>correo electronico, número de telefono personal y otros datos</strong> con el objetivo de poder recibir informacion de manera mas segura y confiable por favor indrodusca su direccion de correo electronico, número de telefono personal y Fecha de Nacimiento : </p> <br/> <table width="90%" border="0" class="table"> <tr> <td align="center"> <legend>Número de Telefono movil:</legend> </td> </tr> <tr> <td align="center"> <?php $_telefono_per = (trim($obj->tuplas["telefono_per"]) != "" and isnumberphone($obj->tuplas["telefono_per"])) ? $obj->tuplas["telefono_per"] : ""; ?> <input type="text" name="movilInput" style="width='200px'" value="<?php print $_telefono_per; ?> " /> </td> </tr> <tr> <td align="center"> <legend>Dirección de Correo Electronico:</legend> </td> </tr>
if (!isset($_POST["emailInput"])) { $serror = "Error, no existe parametro de correo electronico"; } else { $email = trim($_POST["emailInput"]); if (!filter_var($email, FILTER_VALIDATE_EMAIL) === false) { $obj->Modificar("docentes", array("email" => $email), " id_docente = " . intval($id_docente)); $serror = "Su Correo Fue Actualizado Correctamente <strong>" . $email . "</strong>"; } else { $serror = "<strong><font color='red'>Error</font></strong>, no es una direccion de correo electronico valida <strong>" . $email . "<strong>"; } } if (!isset($_POST["movilInput"])) { $serror .= "<br>Error, no existe parametro de correo electronico"; } else { $telefono = trim($_POST["movilInput"]); if (isnumberphone($telefono)) { $obj->Modificar("docentes", array("telefono_per" => $telefono), " id_docente = " . intval($id_docente)); $serror .= "<br>Su Telefono Movil Fue Actualizado Correctamente <strong>" . $telefono . "</strong>"; } else { $serror .= "<br><strong><font color='red'>Error</font></strong>, no es un telefono movil valido <strong>" . $telefono . "<strong>"; } } if (!@checkdate($_POST["month"], $_POST["day"], $_POST["year"])) { $serror .= "<br><strong><font color='red'>Error</font></strong>, no es un Fecha de Nacimiento Valida <strong>" . trim($_POST["day"] . "/" . $_POST["month"] . "/" . $_POST["year"]) . "<strong>"; } else { $_fec_nacimiento = trim($_POST["day"] . "/" . $_POST["month"] . "/" . $_POST["year"]); $obj->Modificar("docentes", array("fec_nac" => $_fec_nacimiento), " id_docente = " . intval($id_docente)); $serror .= "<br>Su Fecha de Nacimiento Fue Actualizado Correctamente <strong>" . $_fec_nacimiento . "</strong>"; } $obj->Close(); ?>