Jump to content

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

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.