Jump to content

Include mysql numrows


unemployment

Recommended Posts

How do I find the count of mysql num rows and output that value with this function?

 

function fetch_company_fans($cid)
{
$cid = (int)$cid;

$sql = "stuff";

$result = mysql_query($sql);

$fans = array();

while (($row = mysql_fetch_assoc($result)) !== false)
{
	$fans[] = array(
		'username'			=> $row['username'],
	);
}

return $fans;
}

Link to comment
https://forums.phpfreaks.com/topic/233270-include-mysql-numrows/
Share on other sites

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.