Jump to content

Just want to count rowsand display how many


deansaddigh

Recommended Posts

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

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 />';

			}

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.