oscard41, aun nada, el problema persiste, la pagina se queda en blanco...y no se redirecciona al index, realmente no se a que se puede deber esto...es un index simple, te comparto para que puedas visualizarlo...
Código PHP:
Ver original<?php
include ('../../Conexion/cnx_php.php');
include ('../../Conexion/security.php');
$nombre = $_SESSION['nombre'];
$apellido = $_SESSION['apellido'];
//querys para mostrar las cantidades
//query 1
SELECT COUNT(*)
FROM BASE_REQUERIMIENTOS",$link);
$total = $row[0];
}
//query 2
SELECT COUNT(*)
FROM BASE_REQUERIMIENTOS
WHERE ESTADO IN ('ABIERTO','PENDIENTE')",$link);
$pendiente = $row[0];
}
//query 3
SELECT COUNT(*)
FROM BASE_REQUERIMIENTOS
WHERE ESTADO NOT IN ('ABIERTO','PENDIENTE')",$link);
$cerrado = $row[0];
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>::</title>
<link href="../css/estilo.css" rel="stylesheet" type="text/css" />
<!--Inicio Extjs-->
<link rel="stylesheet" type="text/css" href="../Includes/css/ext-all.css" />
<script type="text/javascript" src="../Includes/ext-base-debug.js"></script>
<script type="text/javascript" src="../Includes/ext-all-debug_2.js"></script>
<link rel="stylesheet" type="text/css" href="../menu/menu/pro_dropdown_3.css" />
<script src="../menu/menu/stuHover.js" type="text/javascript"></script>
<!-- Otros Extjs--->
<link rel="stylesheet" type="text/css" href="../Includes/css/GridFilters.css" />
<link rel="stylesheet" type="text/css" href="../Includes/css/RangeMenu.css" />
<link rel="stylesheet" type="text/css" href="../Includes/css/LockingGridView.css" />
<script type="text/javascript" src="../Includes/RangeMenu.js"></script>
<script type="text/javascript" src="../Includes/ListMenu.js"></script>
<script type="text/javascript" src="../Includes/GridFilters.js"></script>
<script type="text/javascript" src="../Includes/Filter.js"></script>
<script type="text/javascript" src="../Includes/StringFilter.js"></script>
<script type="text/javascript" src="../Includes/DateFilter.js"></script>
<script type="text/javascript" src="../Includes/ListFilter.js"></script>
<script type="text/javascript" src="../Includes/NumericFilter.js"></script>
<script type="text/javascript" src="../Includes/BooleanFilter.js"></script>
<script type="text/javascript" src="../Includes/LockingGridView.js"></script>
</head>
<body>
<?
include ('../menu/menu.php');
?>
<br>
<br>
<form name="form1" method="post" action="">
<!--Extjs-->
<br>
<br>
<table width="951" border="0" cellpadding="0" cellspacing="0" bgcolor="" style="margin-left:30px">
<tr>
<td height="20" colspan="3" valign="top" class="Tema">Control Seguimiento de Incidencias -
<?php echo date("Y")?> </td>
</tr>
</table>
<br>
<br>
<table width="951" border="0" cellpadding="0" cellspacing="0" bgcolor="" style="margin-left:30px">
<tr>
<td width="51"><img src="http://www.forosdelweb.com/f18/includes/images/usuario.jpeg" width="65" height="65" vspace="6" hspace="5"></td>
<td height="20"><font size = "6">Bienvenido : <?php echo $nombre . " ".$apellido?></font></td>
</tr>
</table>
<br>
<table width="951" border="0" cellpadding="0" cellspacing="0" bgcolor="" style="margin-left:30px">
<tr>
<td height="20" colspan="3" valign="top"><font size = "6">Mis Tickets : <?php echo $total?></font></td>
</tr>
</table>
<br>
<table width="951" border="0" cellpadding="0" cellspacing="0" bgcolor="" style="margin-left:30px">
<tr>
<td height="20" colspan="3" valign="top"><font size = "6">Tickets Pendientes : <a href = "../index/index_01.php"><?php echo $pendiente?></a></font></td>
</tr>
</table>
<br>
<table width="951" border="0" cellpadding="0" cellspacing="0" bgcolor="" style="margin-left:30px">
<tr>
<td height="20" colspan="3" valign="top"><font size = "6">Tickets Cerrados : <a href="http://www.forosdelweb.com/f18/index/index_03.php"><?php echo $cerrado?></a></font></td>
</tr>
</table>
</form>
</body>
</html>