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

Link to comment
Share on other sites

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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.