deansaddigh Posted March 1, 2010 Share Posted March 1, 2010 I have this sql $result = mysql_query($coursequery, $conn) or die ("Unable to perform query: " . mysql_error()); //bring back courses echo '<h2>'. $row['school_name'].' also offers:</h2><br />'; while($row = mysql_fetch_array($result,MYSQL_ASSOC)) { echo '<p>'. $row['type']. ' :'.$row['course_name'].'</p><hr />'; } How can i count the rows and then change the line which says "also offers (THE AMOUNT) of courses Thanks in advance Link to comment https://forums.phpfreaks.com/topic/193773-just-want-to-count-rowsand-display-how-many/ Share on other sites More sharing options...
deansaddigh Posted March 1, 2010 Author Share Posted March 1, 2010 Its ok i have done this now using $result = mysql_query($coursequery, $conn) or die ("Unable to perform query: " . mysql_error()); $num_rows = mysql_num_rows($result); //bring back courses if ($num_rows == 1) { echo '<h2>'. $row['school_name'].' '.'offers ('.$num_rows.') course</h2><br />'; } else { echo '<h2>'. $row['school_name'].' '.'offers ('.$num_rows.') courses</h2><br />'; } while($row = mysql_fetch_array($result,MYSQL_ASSOC)) { echo '<p>'. $row['type']. ' :'.$row['course_name'].'</p><hr />'; } Link to comment https://forums.phpfreaks.com/topic/193773-just-want-to-count-rowsand-display-how-many/#findComment-1019885 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.