<?PHP
// $requiredUserLevel = array(4);
$minUserLevel=3;
$cfgProgDir = '../../phpSecurePages/';
include($cfgProgDir . "secure.php");
?>
<html>
<head>
<title>Eliminación de registros de la tabla participantes</title>
</head>
<body>
<h3>Eliminación de registros de la tabla participantes (DELETE)</h3>
<?
include("conexion.php");
include("func.php");
$sql="DELETE FROM participantes
WHERE num_personal=$num_personal_e";
If ($res=send_sql($db,$sql)) {
echo "</br></br>El comando SQL se ha ejecutado";
echo "</br></br>Se han borrado los registros seleccionados.";
}
?>
</br></br><table align="center" width="60%"><tr><td align="center">
<form>
<input type='button' value='Regresar.' onClick='javascript:history.back()'>
</form>
</table></tr></td></br></br>
</body>
</html>