casperhollemans Posted August 18, 2014 Share Posted August 18, 2014 Hello, my name is Casper. I'm createing a site where you can upload articles. But for now I onley can show 1 article on the pages. Does anyone knows how to show more articles? My script what posts 1 article: <?php $username = ""; $db = ""; $hostname = ""; $password = ""; @mysql_connect($hostname, $username, '') or die("connectie mislukt"); @mysql_select_db("$db") or die ("could not connect dattabase"); $sql = mysql_query('SELECT * FROM home ORDER BY Date') or die ('Database Error()'); $id = 'ID'; $date = 'Date'; $title = 'Title'; $article = 'Article'; $rows = mysql_fetch_assoc($sql) or die ('Fetch Data Error()'); echo $rows[$title], '-', $rows[$date]; echo '</br>'; echo '</br>'; echo $rows[$article]; ?> and here's a ss of my DB table: http://oi59.tinypic.com/2monptv.jpg every article has to be in this order: title - date article thank you in advance, Casper Hollemans. Link to comment https://forums.phpfreaks.com/topic/290511-show-more-than-1-rows-in-a-order/ Share on other sites More sharing options...
Ch0cu3r Posted August 18, 2014 Share Posted August 18, 2014 But for now I onley can show 1 article on the pages. Does anyone knows how to show more articles? To show all the articles returned by your query you need to use a while loop passing mysql_fetch_array as the condition, Example while($rows = mysql_fetch_assoc($sql)) { echo '<p>' . $rows[$title]. '-'. $rows[$date]; echo '</br>'; echo '</br>'; echo $rows[$article] .'</p>'; } NOTE: You should update your code to use either PDO or MySQLi now. The mysql_* functions are deprecated meaning they are no longer supported and could be removed from future versions of PHP. Link to comment https://forums.phpfreaks.com/topic/290511-show-more-than-1-rows-in-a-order/#findComment-1488117 Share on other sites More sharing options...
casperhollemans Posted August 18, 2014 Author Share Posted August 18, 2014 Thankyou so verry much this helped me alot Link to comment https://forums.phpfreaks.com/topic/290511-show-more-than-1-rows-in-a-order/#findComment-1488121 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.