Hi you smarts!
I need to extract the info from different row from an array created by :
$autores = mysql_query($query_autores, $conetion) or die(mysql_error());
$row_autores = mysql_fetch_assoc($autores);
And then asign the info OF EACH ROW to some different variables.
I'd try this, but it doesnot work on mozila, only in IE.
$var2 = mysql_fetch_assoc($autores);
$var3 = mysql_fetch_assoc($autores);
$var4 = mysql_fetch_assoc($autores);
and then:
echo ($var2['id']);
echo ($var3['id']);
echo ($var4['id']);
( i dont know how to do it using a "while", because i need same field of diferents rows in diferent variables)
Please help.