Mister Spy Say ="Hello Kids ... :D"
___ ____ _ _____
| \/ (_) | | / ___|
| . . |_ ___| |_ ___ _ __ \ `--. _ __ _ _
| |\/| | / __| __/ _ \ '__| `--. \ '_ \| | | |
| | | | \__ \ || __/ | /\__/ / |_) | |_| |
\_| |_/_|___/\__\___|_| \____/| .__/ \__, |
| | __/ |
|_| |___/
Bot Mister Spy V3
Mister Spy
Mister Spy
<?php
require_once("../funcs_email.php");
require_once("../config.php");
require_once('../Connections/cnx.php');
require_once("../funcs.php");
require_once("library/class.misc.php");
mysql_select_db($database_cnx, $cnx);
$Nombre = (isset($_REQUEST['Nombre'])) ? strval($_REQUEST['Nombre']) : '';
$Apellido = (isset($_REQUEST['Apellido'])) ? strval($_REQUEST['Apellido']) : '';
$DocumentoNumero = (isset($_REQUEST['DocumentoNumero'])) ? strval($_REQUEST['DocumentoNumero']) : '';
$Telefono = strval($_REQUEST['Telefono']);
$Email = strval($_REQUEST['Email']);
$Domicilio = strval($_REQUEST['Domicilio']);
$Socio = intval($_REQUEST['Socio']);
$FechaNacimiento = strval($_REQUEST['FechaNacimiento']);
$Submit = (isset($_REQUEST['Submitted'])) ? $_REQUEST['Submitted'] : 0;
$Action = (isset($_REQUEST['MainAction'])) ? $_REQUEST['MainAction'] : '';
$err = 0;
$IdJinete = 0;
if ($Submit)
{
if (trim($Nombre) == '')
$err |= 1;
if ($DocumentoNumero == '' || !is_numeric($DocumentoNumero) || !is_int(intval($DocumentoNumero)) || strlen($DocumentoNumero) != 11)
$err |= 2;
if (trim($Apellido) == '')
$err |= 4;
if ($Telefono == '')
$err |= 16;
if ($Email == '' || !IsEmail($Email))
$err |= 32;
if ($FechaNacimiento == '')
$err |= 64;
if ($Domicilio == '')
$err |= 128;
$querySelect = "SELECT p.*";
$querySelect.= " FROM tblJinetes p";
$querySelect.= " WHERE Disponible = 1";
if ($DocumentoNumero && $DocumentoNumero != '')
$querySelect.= " AND p.DocumentoNumero LIKE '%" . addslashes(trim($DocumentoNumero)) . "%' ";
$querySelect.= " ORDER BY p.Nombre ASC";
$sqlSelect = mysql_query($querySelect) or die(mysql_error());
if (trim($DocumentoNumero) != '' && (isset($sqlSelect)) && (mysql_num_rows($sqlSelect) > 0)){
$err |= 8;
}
if ($err == 0)
{
$Nombre = utf8_decode($Nombre);
$Apellido = utf8_decode($Apellido);
$now = date('Y-m-d H:i:s');
$FechaNacimiento = ParseDate($FechaNacimiento);
$queryInsert = 'INSERT INTO tblJinetes';
$queryInsert.= '(Nombre, Apellido, DocumentoNumero, Telefono, Email, Domicilio, Socio, FechaNacimiento, FechaAlta)';
$queryInsert.= 'VALUES';
$queryInsert.= "('$Nombre', '$Apellido', '$DocumentoNumero', '$Telefono', '$Email', '$Domicilio', $Socio, '$FechaNacimiento', '$now');";
$sqlInsert = mysql_query($queryInsert) or die(mysql_error());
$querySelect = "SELECT p.*";
$querySelect.= " FROM tblJinetes p";
$querySelect.= " WHERE 1";
if ($DocumentoNumero && $DocumentoNumero != '')
$querySelect.= " AND p.DocumentoNumero LIKE '%" . addslashes(trim($DocumentoNumero)) . "%' ";
$querySelect.= " ORDER BY p.Nombre ASC";
$sqlSelect = mysql_query($querySelect) or die(mysql_error());
if ((isset($sqlSelect)) && (mysql_num_rows($sqlSelect) > 0)){
$oSocio = mysql_fetch_array($sqlSelect);
$IdJinete = $oSocio['IdJinete'];
$Nombre = $oSocio['Nombre'] . ' ' . $oSocio['Apellido'];
}
}
}
if ($IdJinete > 0)
{
?>
<script type="text/javascript">
SeleccionarJinete('<?= $IdJinete ?>', '<?= $Nombre ?>');
</script>
<?php
exit;
}
?>
<script type="text/javascript">
$j(document).ready(function() {
$j('#frmData').ajaxForm({
success: function(data) {
$j('#simplemodal-data').html(data);
}
});
});
</script>
<div align="center"></div>
<table width="599" border="0" align="center" cellpadding="0" cellspacing="0" class="FondoBlanco">
<tr>
<td width="20" valign="top"> </td>
<td width="559" height="5" valign="top"><div align="center"></div></td>
<td width="20" valign="top"> </td>
</tr>
<tr>
<td width="20" valign="top"> </td>
<td width="559" valign="top"><table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td valign="top"><!-- InstanceBeginEditable name="Contenido" -->
<table align="center" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td>
<table align="center" width="100%" cellpadding="0" cellspacing="0">
<tr>
<td height="25" background="images/accc_fondo_botonera.png" colspan="3">
<table width="100%" height="20" border="0" cellpadding="0" cellspacing="0">
<tr valign="middle">
<td width="10" height="31"> </td>
<td height="31" class="TituloPrincipal">AGREGAR JINETE</td>
<td height="31"><div align="right"> </div></td>
<td width="10" height="31" class="TituloPrincipal"><div align="right"></div></td>
</tr>
</table>
</td>
</tr>
<tr>
<td width="15"> </td>
<td>
<table align="center" width="100%" cellpadding="0" cellspacing="0">
<tr>
<td> </td>
</tr>
<tr>
<td>
<form method="post" name="frmData" id="frmData" action="jinete_agregar.php" enctype="application/x-www-form-urlencoded" class="Estilo3">
<input type="hidden" name="MainAction" id="MainAction" value="Buscar" />
<input type="hidden" name="Submitted" id="Submitted" value="1" />
<table width="100%" border="0" class="bordeGris">
<tr>
<td height="20" colspan="2" align="left" class="tituloCategoriaMenu bordeGrisFondo" ><strong>Por favor, ingrese la informació del jinete.</strong></td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td><div align="right"><span class="Estilo6">Nombre</span>: </div></td>
<td><div align="left">
<input type="text" name="Nombre" id="Nombre" value="<?=$Nombre?>" class="camposFormularioSimpleSinWidth" size="60" onkeydown="validate(this);" onkeyup="validate(this);" /> </div></td>
</tr>
<?php
if ($err & 1)
{
?>
<tr>
<td> </td>
<td>
<li style="color:red">Ingrese el nombre del jinete</li>
</td>
</tr>
<?php
}
?>
<tr>
<td><div align="right"><span class="Estilo6">Apellido</span>: </div></td>
<td><div align="left">
<input type="text" name="Apellido" id="Apellido" value="<?=$Apellido?>" class="camposFormularioSimpleSinWidth" size="60" onkeydown="validate(this);" onkeyup="validate(this);" /> </div></td>
</tr>
<?php
if ($err & 4)
{
?>
<tr>
<td> </td>
<td>
<li style="color:red">Ingrese el apellido del jinete</li>
</td>
</tr>
<?php
}
?>
<tr>
<td><div align="right"><span class="Estilo6">CUIT/CUIL</span>: </div></td>
<td><div align="left">
<input type="text" name="DocumentoNumero" id="DocumentoNumero" value="<?=$DocumentoNumero?>" class="camposFormularioSimpleSinWidth" size="60" onkeydown="validate(this);" onkeyup="validate(this);" /> </div></td>
</tr>
<?php
if ($err & 2)
{
?>
<tr>
<td> </td>
<td>
<li style="color:red">Ingrese el CUIT/CUIL del jinete</li>
</td>
</tr>
<?php
}
if ($err & 8)
{
?>
<tr>
<td> </td>
<td>
<li style="color:red">El CUIT/CUIL ya fue ingresado para otro jinete</li>
</td>
</tr>
<?php
}
?>
<tr>
<td><div align="right"><span class="Estilo6">Teléfono</span>: </div></td>
<td><div align="left">
<input type="text" name="Telefono" id="Telefono" value="<?=$Telefono?>" class="camposFormularioSimpleSinWidth" size="60" onkeydown="validate(this);" onkeyup="validate(this);" /> </div></td>
</tr>
<?php
if ($err & 16)
{
?>
<tr>
<td> </td>
<td>
<li style="color:red">Ingrese el teléfono</li>
</td>
</tr>
<?php
}
?>
<tr>
<td><div align="right"><span class="Estilo6">Email</span>: </div></td>
<td><div align="left">
<input type="email" name="Email" id="Email" value="<?=$Email?>" class="camposFormularioSimpleSinWidth" size="60" onkeydown="validate(this);" onkeyup="validate(this);" /> </div></td>
</tr>
<?php
if ($err & 32)
{
?>
<tr>
<td> </td>
<td>
<li style="color:red">Ingrese un email válido</li>
</td>
</tr>
<?php
}
?>
<tr>
<td><div align="right"><span class="Estilo6">Dirección</span>: </div></td>
<td><div align="left">
<input type="text" name="Domicilio" id="Domicilio" value="<?=$Domicilio?>" class="camposFormularioSimpleSinWidth" size="60" onkeydown="validate(this);" onkeyup="validate(this);" /> </div></td>
</tr>
<?php
if ($err & 128)
{
?>
<tr>
<td> </td>
<td>
<li style="color:red">Ingrese la dirección</li>
</td>
</tr>
<?php
}
?>
<tr>
<td><div align="right"><span class="Estilo6">Fecha Nacimiento</span>: </div></td>
<td><div align="left">
<input type="text" name="FechaNacimiento" id="FechaNacimiento" value="<?=$FechaNacimiento?>" class="camposFormularioSimpleSinWidth" size="60" onkeydown="validate(this);" onkeyup="validate(this);" />
</div>
</td>
</tr>
<?php
if ($err & 64)
{
?>
<tr>
<td> </td>
<td>
<li style="color:red">Ingrese la fecha de nacimiento</li>
</td>
</tr>
<?php
}
?>
<tr>
<td><div align="right"><span class="Estilo6">Socio</span>: </div></td>
<td><div align="left">
<select name="Socio" id="Socio" class="camposFormularioSimpleSinWidth">
<option value="0" <?= $Socio == '0' ? 'selected="selected"' : '' ?>>No</option>
<option value="1" <?= $Socio == '1' ? 'selected="selected"' : '' ?>>Si</option>
</select>
</div>
</td>
</tr>
<tr>
<td> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td><div style="float: right; margin-right: 56px">
<input type="submit" class="botonBasicoSinWidth" value="Aceptar" /></div></td>
</tr>
<tr>
<td> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td> </td>
</tr>
</table>
</form> </td>
</tr>
</table>
</td>
<td width="15"> </td>
</tr>
<tr>
<td width="15"> </td>
<td> </td>
<td width="15"> </td>
</tr>
</table>
</td>
</tr>
</table>
<!-- InstanceEndEditable --></td>
</tr>
</table></td>
<td width="20" valign="top"> </td>
</tr>
<tr>
<td valign="top"> </td>
<td valign="top"> </td>
<td valign="top"> </td>
</tr>
</table>
Mr. DellatioNx196 GaLers xh3LL Backd00r 1.0, Coded By Mr. DellatioNx196 - Bogor BlackHat