Ver Mensaje Individual
  #3 (permalink)  
Antiguo 18/05/2004, 09:51
raulggm
 
Fecha de Ingreso: marzo-2004
Ubicación: Extremadura
Mensajes: 206
Antigüedad: 20 años, 1 mes
Puntos: 0
cuando sacas los resultados haces un primer mysql_fetch_array que te hace perder el primer registro, y luego ya haces el while con mysql_fetch_array con el resto de registros:

Código PHP:
$datos mysql_fetch_array ($resultadoSQL);
$alguno=false;
    while (
$datos mysql_fetch_array ($resultadoSQL)){
        
$alguno=true
pon, simplemente:
Código PHP:
$alguno=false;
    while (
$datos mysql_fetch_array ($resultadoSQL)){
        
$alguno=true
quitale el primer mysql_fetch_array