php-db | 2001011
Date: 01/12/01
- Next message: Jonathan Kazmierczak: "Re: [PHP-DB] Problem with LONG TEXT fields (ODBC-MS SQL 7)"
- Previous message: Andreas Karajannis: "Re: [PHP-DB] Problem with LONG TEXT fields (ODBC-MS SQL 7)"
- In reply to: Julie Meloni: "Re: [PHP-DB] Easy MySQL question"
- Next in thread: Paul DuBois: "[PHP-DB] Re: [PHP] Re: [PHP-DB] Easy MySQL question"
- Reply: Paul DuBois: "[PHP-DB] Re: [PHP] Re: [PHP-DB] Easy MySQL question"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
What's wrong with
$number=mysql_num_rows($result);
echo "The total number of rows is $number";
----- Original Message -----
From: Julie Meloni <julie <email protected>>
To: Paulson, Joseph V. "Jay" <jay.paulson <email protected>>
Cc: <php-general <email protected>>; <php-db <email protected>>
Sent: Thursday, January 11, 2001 11:17 AM
Subject: [PHP] Re: [PHP-DB] Easy MySQL question
> Paulson, Joseph V. \"Jay\" wrote:
>
> > Hello everyone--
> > I've got a easy question that I can't seem to answer for myself. I'm
> > running a query in MySQL and want to know how many entries are in a
table
> > and then echo that out onto a page. I thought this would be easy but I
> > don't know why it's not working. Anyway, here's what I am doing:
> >
> > (open db connection)
> >
> > $query = "SELECT count(*) FROM Movie";
> > $result = mysql_query($sql, $dbLink);
> > $myrow = mysql_result($result);
> > echo $myrow;
> >
>
> $myrow = mysql_result($result,0,"count(*)");
>
>
>
> --
> +------------------------------------------------+
> | Julie Meloni (julie <email protected>) |
> | Tech. Director, i2i Interactive (www.i2ii.com) |
> | |
> | "PHP Essentials" & "PHP Fast & Easy" |
> | http://www.thickbook.com/ |
> +------------------------------------------------+
>
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, e-mail: php-general-unsubscribe <email protected>
> For additional commands, e-mail: php-general-help <email protected>
> To contact the list administrators, e-mail: php-list-admin <email protected>
>
>
-- PHP Database Mailing List (http://www.php.net/) To unsubscribe, e-mail: php-db-unsubscribe <email protected> For additional commands, e-mail: php-db-help <email protected> To contact the list administrators, e-mail: php-list-admin <email protected>
- Next message: Jonathan Kazmierczak: "Re: [PHP-DB] Problem with LONG TEXT fields (ODBC-MS SQL 7)"
- Previous message: Andreas Karajannis: "Re: [PHP-DB] Problem with LONG TEXT fields (ODBC-MS SQL 7)"
- In reply to: Julie Meloni: "Re: [PHP-DB] Easy MySQL question"
- Next in thread: Paul DuBois: "[PHP-DB] Re: [PHP] Re: [PHP-DB] Easy MySQL question"
- Reply: Paul DuBois: "[PHP-DB] Re: [PHP] Re: [PHP-DB] Easy MySQL question"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

