padams Posted May 26, 2010 Share Posted May 26, 2010 I need to display the results of a query twice on one page and have run into a problem. I have used mysql_data_seek at the end of the first do while loop, setting the internal pointer back to 0, but when I echo out the results a second time I get a blank record at the top. You can see the results on a test page at http://elsombrero.stacnz.com/testing.php, the code is: $courses_sql = "SELECT * FROM courses"; $courses_query = mysql_query($courses_sql) or die(mysql_error()); $rsCourses = mysql_fetch_assoc($courses_query); <ul><?php do { ?> <li><a href="menu.php?courseID=<?php echo $rsCourses['courseID']; ?>"> <?php echo $rsCourses['cName']; ?> </a></li> <?php } while ($rsCourses = mysql_fetch_assoc($courses_query)); mysql_data_seek($courses_query, 0); ?> <?php do { ?> <li><a href="menu.php?courseID=<?php echo $rsCourses['courseID']; ?>"> <?php echo $rsCourses['cName']; ?> </a></li> <?php } while ($rsCourses = mysql_fetch_assoc($courses_query)); mysql_data_seek($courses_query, 0); ?></ul> </html> Quote Link to comment https://forums.phpfreaks.com/topic/202939-displaying-query-results-twice/ Share on other sites More sharing options...
kalivos Posted May 26, 2010 Share Posted May 26, 2010 It's getting late and my brain isn't all there at this hour, but I'll give this a shot... Do you have the same issue if you convert the do-while to a while? $courses_sql = "SELECT * FROM courses"; $courses_query = mysql_query($courses_sql) or die(mysql_error()); <ul><?php while ($rsCourses = mysql_fetch_assoc($courses_query)){ ?> <li><a href="menu.php?courseID=<?php echo $rsCourses['courseID']; ?>"> <?php echo $rsCourses['cName']; ?> </a></li> <?php } mysql_data_seek($courses_query, 0); ?> <?php while ($rsCourses = mysql_fetch_assoc($courses_query)){ ?> <li><a href="menu.php?courseID=<?php echo $rsCourses['courseID']; ?>"> <?php echo $rsCourses['cName']; ?> </a></li> <?php } mysql_data_seek($courses_query, 0); ?></ul> </html> -Kalivos Quote Link to comment https://forums.phpfreaks.com/topic/202939-displaying-query-results-twice/#findComment-1063475 Share on other sites More sharing options...
kenrbnsn Posted May 26, 2010 Share Posted May 26, 2010 Let's change this so you only have to loop through the dataset once: <?php $tmp = array(); $tmp1 = array(); $tmp2 = array(); $courses_sql = "SELECT * FROM courses"; $courses_query = mysql_query($courses_sql) or die(mysql_error()); $tmp[] = '<ul>'; while ($rsCourses = mysql_fetch_assoc($courses_query)) { $tmp1[] = '<li><a href="menu.php?courseID=' . $rsCourses['courseID'] . '">' . $rsCourses['cName'] . '</a></li>'; $tmp2[] = '<li><a href="menu.php?courseID=' . $rsCourses['courseID'] . '">' . $rsCourses['cName'] . '</a></li>'; } $tmp[] = implode("\n",$tmp1); $tmp[] = implode("\n",$tmp2); $tmp[] = '</ul>'; $tmp[] = '</html>'; echo implode("\n",$tmp) . "\n"; ?> Ken Quote Link to comment https://forums.phpfreaks.com/topic/202939-displaying-query-results-twice/#findComment-1063478 Share on other sites More sharing options...
padams Posted May 27, 2010 Author Share Posted May 27, 2010 Brilliant, solved it. Thanks, I really should have thought of that myself... It's getting late and my brain isn't all there at this hour, but I'll give this a shot... Do you have the same issue if you convert the do-while to a while? $courses_sql = "SELECT * FROM courses"; $courses_query = mysql_query($courses_sql) or die(mysql_error()); <ul><?php while ($rsCourses = mysql_fetch_assoc($courses_query)){ ?> <li><a href="menu.php?courseID=<?php echo $rsCourses['courseID']; ?>"> <?php echo $rsCourses['cName']; ?> </a></li> <?php } mysql_data_seek($courses_query, 0); ?> <?php while ($rsCourses = mysql_fetch_assoc($courses_query)){ ?> <li><a href="menu.php?courseID=<?php echo $rsCourses['courseID']; ?>"> <?php echo $rsCourses['cName']; ?> </a></li> <?php } mysql_data_seek($courses_query, 0); ?></ul> </html> -Kalivos Quote Link to comment https://forums.phpfreaks.com/topic/202939-displaying-query-results-twice/#findComment-1063884 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.