Hi you smarts!
I need to extract the info from different row from an array created by :
Code: Select all
$autores = mysql_query($query_autores, $conetion) or die(mysql_error());
$row_autores = mysql_fetch_assoc($autores);I'd try this, but it doesnot work on mozila, only in IE.
Code: Select all
$var2 = mysql_fetch_assoc($autores);
$var3 = mysql_fetch_assoc($autores);
$var4 = mysql_fetch_assoc($autores);Code: Select all
echo ($var2['id']);
echo ($var3['id']);
echo ($var4['id']);Please help.
~pickle | Please use [ php ] tags where appropriate. Your post has been updated to reflect how we'd like it to look.