PDA

View Full Version : Numbering mysql rows


Jolten
01-06-2005, 07:44 AM
Hi,

I've got a very simple query I'm trying to count rows with.


$strike = mysql_query("SELECT * FROM table WHERE when = '$now'");
$per = mysql_num_rows($strike);


The problem I have is the WHERE clause. if I remove that the row numbering works fine, however, I want to only count rows where when=$now.

The $now variable is set above the query and is calling information correctly.

How can I go about counting rows where when=$now?


Thanks!

rake
01-06-2005, 08:11 AM
Your code is correct. Are you sure $now is set correctly?

try
"SELECT COUNT(*) AS count FROM table WHERE when='". time()."' "

Jolten
01-06-2005, 08:41 AM
oops. :)

I got it worked out. Thanks rake.

Using the word "when" for a database field was a bad idea. Apparently it's reserved. I changed the name of that db field, and my queries to match it, and everything works like I expect.

Thanks again.

aussiev8
01-07-2005, 12:55 AM
jolten you should use rakes exmample, counting any other way is less efficient!

Jolten
01-07-2005, 01:24 AM
I would but it doesn't seem to work.

rake
01-07-2005, 05:21 AM
you need to mysql_fetch_array as you would any other query and then use $result['count']