scarface83 Posted April 28, 2007 Share Posted April 28, 2007 hi can this be done ? while ($row2 = mysql_fetch_array($result2), while ($row3 = mysql_fetch_array($query3)){ // do some code Link to comment https://forums.phpfreaks.com/topic/49055-solved-is-this-possible/ Share on other sites More sharing options...
scarface83 Posted April 28, 2007 Author Share Posted April 28, 2007 anyone ? Link to comment https://forums.phpfreaks.com/topic/49055-solved-is-this-possible/#findComment-240356 Share on other sites More sharing options...
Barand Posted April 28, 2007 Share Posted April 28, 2007 Not with that particular syntax. <?php while ($row2 = mysql_fetch_array($result2)) { // // here you need to re-query to get $query3 // or repostion to start of resultset with mysql_data_seek() // while ($row3 = mysql_fetch_array($query3)) { // do some code } } ?> Link to comment https://forums.phpfreaks.com/topic/49055-solved-is-this-possible/#findComment-240359 Share on other sites More sharing options...
scarface83 Posted April 28, 2007 Author Share Posted April 28, 2007 thanks Link to comment https://forums.phpfreaks.com/topic/49055-solved-is-this-possible/#findComment-240360 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.