Current location: Hot Scripts Forums » Programming Languages » PHP » Counting from DB.


Counting from DB.

Reply
  #1 (permalink)  
Old 02-28-06, 09:21 AM
miniature miniature is offline
Newbie Coder
 
Join Date: Feb 2006
Posts: 75
Thanks: 0
Thanked 0 Times in 0 Posts
Counting from DB.

Hi, i'm new here.
I have a question:
---
I have this code:
PHP Code:

$query = @mysql_query("SELECT name, Count(*) FROM table WHERE name Like '%$q%'");     

echo 
"&nbsp;&nbsp;&nbsp;There's&nbsp;<b>" $query "</b>&nbsp;results for the query&nbsp;<b>" $q "</b>.\n"
This code count in how many rows the query exist.
How can I do that it count how many times the query exist?

Thanks,
Yoav.
Reply With Quote
  #2 (permalink)  
Old 02-28-06, 09:27 AM
Nico's Avatar
Nico Nico is offline
Community Leader
 
Join Date: Sep 2005
Location: Spain
Posts: 8,075
Thanks: 11
Thanked 88 Times in 83 Posts
PHP Code:

$nr_rows mysql_num_rows($query
Reply With Quote
  #3 (permalink)  
Old 02-28-06, 10:00 AM
miniature miniature is offline
Newbie Coder
 
Join Date: Feb 2006
Posts: 75
Thanks: 0
Thanked 0 Times in 0 Posts
Your code doesn't work.
Reply With Quote
  #4 (permalink)  
Old 02-28-06, 10:22 AM
Nico's Avatar
Nico Nico is offline
Community Leader
 
Join Date: Sep 2005
Location: Spain
Posts: 8,075
Thanks: 11
Thanked 88 Times in 83 Posts
Oh, sorry! I misunderstood your question. My bad.
Reply With Quote
  #5 (permalink)  
Old 02-28-06, 11:24 AM
NabZ NabZ is offline
Newbie Coder
 
Join Date: Nov 2005
Posts: 87
Thanks: 0
Thanked 1 Time in 1 Post
try somthing like this...

$sql = "SELECT COUNT(*) FROM table WHERE name Like '%$q%'";
$result = mysql_query($sql);
$nabz = mysql_result($result, 0);

echo "Database Count: $nabz";

hehe. like the name of the var ey?
Reply With Quote
  #6 (permalink)  
Old 02-28-06, 03:25 PM
miniature miniature is offline
Newbie Coder
 
Join Date: Feb 2006
Posts: 75
Thanks: 0
Thanked 0 Times in 0 Posts
OK, thanks.
How can I combine it with a 'mysql_fetch_array' while query?
Reply With Quote
  #7 (permalink)  
Old 03-01-06, 04:21 AM
miniature miniature is offline
Newbie Coder
 
Join Date: Feb 2006
Posts: 75
Thanks: 0
Thanked 0 Times in 0 Posts
Someone?.. Please.
Reply With Quote
Reply

Bookmarks


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Updating form w/o refresh after DB insertion shaggystyle JavaScript 3 07-18-05 10:06 AM
SQL db - custom insert and select query app needed ATS16805 ASP.NET 1 06-24-05 04:38 PM
I can't get this to connect to the DB!!!! Noah PHP 1 06-20-05 12:29 PM
Passing Array values into the db Stripe-man PHP 2 05-14-05 02:59 AM
Need help counting tables (selected db) DBN PHP 2 05-13-04 02:12 AM


All times are GMT -5. The time now is 06:35 AM.
vBulletin® Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.