Ver Mensaje Individual
  #5 (permalink)  
Antiguo 22/08/2008, 13:14
masi
 
Fecha de Ingreso: mayo-2008
Mensajes: 47
Antigüedad: 16 años, 5 meses
Puntos: 0
Respuesta: Problema com while en XAJAX

es lo entiendo mmmmmmm eso esta en comentario ahorita no lo estoy usando, asi que creoo que por eso no seria el problema mira lo te lo envio mejor ok. gracias

while($row = mysql_fetch_array($consulta))
{ //inicio del while

$salida .= "<tr>";
$salida .= " <td>".$num=($num+1)."</td>"; //despliega la cantidad de registros encontrados
$salida .= "<td><a href='datos_generales.php'>".$row["cedula_abogados"]."</a></td>";
$salida .= "<td>" .$row["nombre"]."</td>";
$salida .= "<td>" .$row["apellido"]."</td>";
$salida .= "</tr>";


El SESSION_START LO PUSE AL PRINCIPIO DE LA FUNCION

$_SESSION["ced"]=$row["cedula_abogados"];

} //fin del while

en la otra pagina la llamada seria asi:





<html>
<head>
<title>Datos de Consultas</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<?php

include_once("misfunciones_xajax.php");
$xajax->printJavascript("/xajax");

?>
</head>

<body>

<form id="aaa">
<table width="100%">
<tr>
<td>
<table>
<tr> <td id="nada"></td></tr>
</table>
</td>

</tr>
</table>

</form>
<script type="text/javascript">
//xajax_mostrar_firmas();
xajax_dibujar_tabla(); //Llamando inicialmente a la función

</script>

<div id="tabla_datos_generales">
</div>

</body>
</html>