Ask a Question related to PHP Development, Design and Development.
-
jim #1
newbie : trying to count records in mysql table
Help, I get no output on this code
// Connect to database.
$dbh = mysql_connect("localhost","user","password");
mysql_select_db("survey");
$query = "select count(*) from response1";
$result = mysql_query($query, $dbh);
while ($rows = mysql_fetch_row($result)) {
$count = $rows[0];
}
print $count;
any one have any Ideas ?
Thanks in advance
Jim
jim Guest
-
No records found for MySQL Table
Hello, We have a MySQL table that we had been using PHP to query, but now we want to query the table using CF 5.0 on a windows 2000 server. The... -
ASP Group Same Records and Give Total Count
I need to know how to group like parts, then count them in asp. I have a table with 60,000 + part numbers that I need a total of each one that is... -
newbie question on count()
I have been driving myself crazy for hours now on a simple (I thought) little deal. I've given up and come for some help. Below is my code snippet.... -
newbie php MySQL table question
Thanks to you both guys. As for reading the manual - I have 4 in front of me and couldn't find the answer to my problem. Some things you do find,... -
Delete from one table with matching records in another table
I'm an Access programmer making the migration to SQL Server, and I want to delete all the records from one table with matching records in another... -
point #2
Re: newbie : trying to count records in mysql table
try this....
// Connect to database.Haven't tried it.....> $dbh = mysql_connect("localhost","user","password");
> mysql_select_db("survey");
>
> $query = "select count(*) AS rec_count from response1";
> $result = mysql_query($query, $dbh);
>
> while ($rows = mysql_fetch_row($result)) {
> $count = $rows['rec_count'];
> }
>
>
> print $count;
hope tis helps...
point
"jim" <luvkatz@tds.net> wrote in message
news:p78sgv8rg85e9t7940qpeu86vpe95mp5oq@4ax.com...> Help, I get no output on this code
>
> // Connect to database.
> $dbh = mysql_connect("localhost","user","password");
> mysql_select_db("survey");
>
> $query = "select count(*) from response1";
> $result = mysql_query($query, $dbh);
>
> while ($rows = mysql_fetch_row($result)) {
> $count = $rows[0];
> }
>
>
> print $count;
>
>
>
>
>
>
>
> any one have any Ideas ?
>
> Thanks in advance
> Jim
>
>
point Guest



Reply With Quote

