Cita:
Iniciado por Aaronus23 Prueba Asi:
Código PHP:
Ver original<?php require_once('../Connections/conexion.php'); //movemos el archivo de conexiones hasta arriba ?>
<table border="1" cellpadding="1" cellspacing="1">
<tr>
<td>ntramite</td>
<td>fecing</td>
<td>interesado</td>
<td>asuning</td>
<td>desres</td>
</tr>
<?php do { ?>
<tr>
<td><?php echo $row_consultarepor['ntramite']; ?></td>
<td><?php echo $row_consultarepor['fecing']; ?></td>
<td><?php echo $row_consultarepor['interesado']; ?></td>
<td><?php echo $row_consultarepor['asuning']; ?></td>
<td><?php echo $row_consultarepor['desres']; ?></td>
</tr>
<?php }
$newvar=mysql_fetch_assoc($consultarepor) /*creamos una nueva variabnle almacenando el resultado del array*/ while ($row_consultarepor = $newvar); ?>
</table>
<?php
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
{
if (PHP_VERSION < 6) {
}
switch ($theType) {
case "text":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "long":
case "int":
$theValue = ($theValue != "") ?
intval($theValue) : "NULL"; break;
case "double":
$theValue = ($theValue != "") ?
doubleval($theValue) : "NULL"; break;
case "date":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "defined":
$theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
break;
}
return $theValue;
}
}
$maxRows_consultarepor = 10;
$pageNum_consultarepor = 0;
if (isset($_GET['pageNum_consultarepor'])) { $pageNum_consultarepor = $_GET['pageNum_consultarepor'];
}
$startRow_consultarepor = $pageNum_consultarepor * $maxRows_consultarepor;
$query_consultarepor = "SELECT ingreso.ntramite, ingreso.fecing, ingreso.interesado, ingreso.asuning, estado_resolu.desres FROM ingreso, estado_resolu WHERE ingreso.idper = 1 AND ingreso.codres = estado_resolu.codres";
$query_limit_consultarepor = sprintf("%s LIMIT %d, %d", $query_consultarepor, $startRow_consultarepor, $maxRows_consultarepor);
if (isset($_GET['totalRows_consultarepor'])) { $totalRows_consultarepor = $_GET['totalRows_consultarepor'];
} else {
$all_consultarepor = mysql_query($query_consultarepor); }
$totalPages_consultarepor = ceil($totalRows_consultarepor/$maxRows_consultarepor)-1;
?>
si esto no te funciona... podrias intentar cambiar el while por un for
mijo********************************************** ***************
su codigo da un error
Parse error: syntax error, unexpected T_VARIABLE, expecting T_WHILE in C:\secretariag\reporte\re2.php on line 25
************************************************** **************
esta dando el error en la declaracion de la variable
$newvar=mysql_fetch_assoc($consultarepor) /*creamos una nueva variabnle
************************************************** **************
Ya mismo me pego un tiro q no puedo solucionar eso..