![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
14/07/2008, 10:01
|
![Avatar de ACX_POISON](http://static.forosdelweb.com/customavatars/avatar229523_1.gif) | | | Fecha de Ingreso: abril-2008 Ubicación: Talca-Chile
Mensajes: 750
Antigüedad: 16 años, 10 meses Puntos: 7 | |
Respuesta: recuperar datos de mssql sugerencia:
Porque no utilizar algo asi
$cons="SELECT * $tabla";
$sql=mysql_query($cons);
$num_reg=mysql_num_rows($sql);
if($num_reg>0)
{
while($row=mssql_fetch_array($sql))
{ //aqui poner tu funcion
}
}
else
{
echo"No hay Registros<br>";
}
Espero te sirva de algo... |