Mister Spy Say ="Hello Kids ... :D"
___ ____ _ _____
| \/ (_) | | / ___|
| . . |_ ___| |_ ___ _ __ \ `--. _ __ _ _
| |\/| | / __| __/ _ \ '__| `--. \ '_ \| | | |
| | | | \__ \ || __/ | /\__/ / |_) | |_| |
\_| |_/_|___/\__\___|_| \____/| .__/ \__, |
| | __/ |
|_| |___/
Bot Mister Spy V3
Mister Spy
Mister Spy
<?php
require_once('../../Connections/cnx.php');
require_once('../../funcs.php');
require_once('ssi_seguridad.php');
function CortarCadena($String, $CantidadCaracteres)
{
if (strlen($String) > $CantidadCaracteres)
return substr($String, 0, $CantidadCaracteres) . '...';
else
return $String;
}
$currentPage = $_SERVER["PHP_SELF"];
?>
<?php
$maxRows_rsGacetillas = 10;
$pageNum_rsGacetillas = 0;
if (isset($_GET['pageNum_rsGacetillas'])) {
$pageNum_rsGacetillas = $_GET['pageNum_rsGacetillas'];
}
$startRow_rsGacetillas = $pageNum_rsGacetillas * $maxRows_rsGacetillas;
mysql_select_db($database_cnx, $cnx);
$query_rsGacetillas = "SELECT * FROM gacetillas ORDER BY Titulo ASC";
$query_limit_rsGacetillas = sprintf("%s LIMIT %d, %d", $query_rsGacetillas, $startRow_rsGacetillas, $maxRows_rsGacetillas);
$rsGacetillas = mysql_query($query_limit_rsGacetillas, $cnx) or die(mysql_error());
$row_rsGacetillas = mysql_fetch_assoc($rsGacetillas);
if (isset($_GET['totalRows_rsGacetillas'])) {
$totalRows_rsGacetillas = $_GET['totalRows_rsGacetillas'];
} else {
$all_rsGacetillas = mysql_query($query_rsGacetillas);
$totalRows_rsGacetillas = mysql_num_rows($all_rsGacetillas);
}
$totalPages_rsGacetillas = ceil($totalRows_rsGacetillas/$maxRows_rsGacetillas)-1;
// ANALIZO SI EL RS ESTA VACIO y ADEMAS ESTA SETEADA LA VAR DE PAG. Si es asi, resto una y me voy a la pagina anterior.
if(isset($_GET['pageNum_rsGacetillas']) && $_GET['pageNum_rsGacetillas']>0 && mysql_num_rows($rsGacetillas)==0)
{
header("location: gacetillas.php?pageNum_rsGacetillas=".($_GET['pageNum_rsGacetillas']-1));
exit();
}
$queryString_rsGacetillas = "";
if (!empty($_SERVER['QUERY_STRING'])) {
$params = explode("&", $_SERVER['QUERY_STRING']);
$newParams = array();
foreach ($params as $param) {
if (stristr($param, "pageNum_rsGacetillas") == false &&
stristr($param, "totalRows_rsGacetillas") == false) {
array_push($newParams, $param);
}
}
if (count($newParams) != 0) {
$queryString_rsGacetillas = "&" . htmlentities(implode("&", $newParams));
}
}
$queryString_rsGacetillas = sprintf("&totalRows_rsGacetillas=%d%s", $totalRows_rsGacetillas, $queryString_rsGacetillas);
if(isset($_SERVER['QUERY_STRING']) && isset($params[1])) {
$query_string='?'.$params[0].'&'.$params[1].'&';
} else {
$query_string='?';
}
$modulo="venta_animales";
$nivel=$_SESSION['MM_Group'];
$sql="SELECT * FROM `niveles_permisos` WHERE `nivel` =".$nivel." AND `modulo` = '".$modulo."'";
$qry=mysql_query($sql);
$row=mysql_fetch_array($qry);
?>
<html>
<head>
<title>.: Administración :.</title>
<script language="JavaScript" type="text/JavaScript" src="edita.js"></script>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link href="basico_backend.css" rel="stylesheet" type="text/css">
</head>
<body>
<table width="90%" border="0" align="center" cellpadding="0" cellspacing="0" class="bordeGrisFondo">
<tr>
<td width="10" class="TituloRubro"> </td>
<td class="TituloRubro"> </td>
</tr>
<tr>
<td width="10" class="TituloRubro"> </td>
<td class="tituloPagina">GACETILLAS</td>
</tr>
<tr>
<td width="10"> </td>
<td> </td>
</tr>
</table>
<table width="90%" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td width="25" height="0" align="right"> </td>
<td height="0" align="right"><div align="left"></div></td>
</tr>
<tr>
<td width="25" height="25" align="right"><a href="gacetillas_add.php"><img src="iconos/add.gif" alt="Agregar" width="16" height="14" hspace="3" border="0" /></a></td>
<td align="right"><div align="left"><a href="gacetillas_add.php">Agregar</a></div></td>
</tr>
</table>
<?php if ($totalRows_rsGacetillas > 0) { // Show if recordset not empty ?>
<br>
<table width="90%" border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF">
<tr>
<td height="20" valign="top"><div align="right"> Registo <?php echo ($startRow_rsGacetillas + 1) ?> a <?php echo min($startRow_rsGacetillas + $maxRows_rsGacetillas, $totalRows_rsGacetillas) ?> de <?php echo $totalRows_rsGacetillas ?> </div></td>
<td width="10"> </td>
</tr>
</table>
<table width="90%" border="0" align="center" cellpadding="<? echo $RegCellPad;?>" cellspacing="<? echo $RegCellSpacing;?>" bgcolor="#FFFFFF" class="bordeGris" id="caja2">
<tr class="bordeGrisFondo">
<td width="222" height="20"><strong> Titulo</strong></td>
<td width="557" height="20"><strong>Descripcion</strong></td>
<td width="121" height="20"><div align="center"><strong>Acción</strong></div></td>
</tr>
<?php do { ?>
<tr onMouseover="changeto(event, '<? echo $colCeld; ?>')" onMouseout="changeback(event, '<? echo $colCeldOut; ?>')">
<td><p> <?php echo $row_rsGacetillas['Titulo']; ?></p></td>
<td><?php echo CortarCadena(strip_tags($row_rsGacetillas['Descripcion']),300); ?></td>
<td width="121"><p align="center">
<? if($row['modificacion']){?>
<a href="gacetillas_mod.php<?php echo $query_string?>IdGacetilla=<?php echo $row_rsGacetillas['IdGacetilla'];?>"><img src="iconos/mod.gif" width="16" height="14" border="0"></a> -
<? } ?>
<? if($row['baja']==1){?>
<a href="gacetillas_del.php<?php echo $query_string?>IdGacetilla=<?php echo $row_rsGacetillas['IdGacetilla'];?>">
<img src="iconos/del.gif" width="16" height="14" border="0"></a>
<? } ?>
</p></td>
</tr>
<tr bgcolor="<? echo $CeldDivide;?>">
<td colspan="6" bgcolor="<? echo $CeldDivide;?>"><div align="center"></div></td>
<?php } while ($row_rsGacetillas = mysql_fetch_assoc($rsGacetillas)); ?>
</table>
<table width="20%" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td width="23%" align="center"><?php if ($pageNum_rsGacetillas > 0) { // Show if not first page ?>
<a href="<?php printf("%s?pageNum_rsGacetillas=%d%s", $currentPage, 0, $queryString_rsGacetillas); ?>"><img src="First.gif" border=0></a>
<?php } // Show if not first page ?>
</td>
<td width="31%" align="center"><?php if ($pageNum_rsGacetillas > 0) { // Show if not first page ?>
<a href="<?php printf("%s?pageNum_rsGacetillas=%d%s", $currentPage, max(0, $pageNum_rsGacetillas - 1), $queryString_rsGacetillas); ?>"><img src="Previous.gif" border=0></a>
<?php } // Show if not first page ?>
</td>
<td width="23%" align="center"><?php if ($pageNum_rsGacetillas < $totalPages_rsGacetillas) { // Show if not last page ?>
<a href="<?php printf("%s?pageNum_rsGacetillas=%d%s", $currentPage, min($totalPages_rsGacetillas, $pageNum_rsGacetillas + 1), $queryString_rsGacetillas); ?>"><img src="Next.gif" border=0></a>
<?php } // Show if not last page ?>
</td>
<td width="23%" align="center"><?php if ($pageNum_rsGacetillas < $totalPages_rsGacetillas) { // Show if not last page ?>
<a href="<?php printf("%s?pageNum_rsGacetillas=%d%s", $currentPage, $totalPages_rsGacetillas, $queryString_rsGacetillas); ?>"><img src="Last.gif" border=0></a>
<?php } // Show if not last page ?>
</td>
</tr>
</table>
<?php } // Show if recordset not empty ?>
<?php if ($totalRows_rsGacetillas == 0) { // Show if recordset empty ?>
<table width="90%" border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#F3F3F3" class="bordeGris">
<tr>
<td> </td>
</tr>
<tr>
<td><p align="center"><span class="tituloCategoriaMenu">Lo siento!</span></p></td>
</tr>
<tr>
<td><div align="center">
<p class="pNegroBold10">No hay registros disponibles</p>
</div></td>
</tr>
<tr>
<td><p> </p></td>
</tr>
</table>
<?php } // Show if recordset empty ?>
</body>
</html>
<?php
mysql_free_result($rsGacetillas);
?>
Mr. DellatioNx196 GaLers xh3LL Backd00r 1.0, Coded By Mr. DellatioNx196 - Bogor BlackHat