Jump to content

Query limiting results


timmah1

Recommended Posts

This code limits itself to 10 results.

 

I need to pull all of the temperatures from the database, the are listed like 96.5, 97.3, 98.9 and so on.

When I run the query, it only shows 10 results.

 

Can anybody tell me why it does this?

<?php
$month = date("m");

$query = "SELECT * FROM charts WHERE username = 'admin' AND MONTH(posted) = '$month' ORDER BY DAY(posted)";
				$chart = mysql_query($query);

				while($charts = mysql_fetch_assoc($chart)){
				$temps[$charts['temp']] =  $charts['temp'];
				} 
				$temp = implode(',', $temps);
				echo $temp."<br />";
?>

 

Thanks in advance

Link to comment
https://forums.phpfreaks.com/topic/141509-query-limiting-results/
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.