Hi,
I am trying to use this while loop
while ($row = mysql_fetch_array($result) AND($row2 = mysql_fetch_array($result2))
I realise that the AND is the wrong syntax but does anyone know how i can get this type of loop to work.../?
You just missed a couple brackets that's all.
while (($row = mysql_fetch_array($result)) && ($row2 = mysql_fetch_array($result2)))