Yes! That was it. Thank you very much. 
Jeff Oien

> Are you using 3.23.33?  If so try removing the space between the COUNT and
> the open paren.  It looks like there may be a bug in the latest release
> (seeing this problem on the mysql list for MAX, probably exists for COUNT as
> well).
> 
> -jm
> 
> That's not it. Get:
> Warning: Supplied argument is not a valid MySQL-Link resource in 
> count.php3 on line 14
> Jeff Oien
> 
> > Shouldn't that be
> > 
> > $result = mysql_query($sql,$db)
> >     or die("Couldn't execute query.");  
> > 
> > So you're querying the database, and not the connection?
> > 
> > 
> > HTH
> > Jon
> > 
> > 
> > -----Original Message-----
> > From: Jeff Oien [mailto:[EMAIL PROTECTED]]
> > Sent: 16 February 2001 17:27
> > To: PHP
> > Subject: [PHP] MySQL COUNT Won't Work
> > 
> > 
> > I'm totally stuck on this code. I get the error 
> > "Couldn't execute query." so I know where it's
> > failing but can't figure out what's wrong. I have
> > a database with 'title' as one of the fields. Based
> > on code in PHP Fast and Easy.
> > Jeff Oien
> > 
> > <?php
> > $db_name = "Music";
> > $table_name = "music";
> > 
> > $connection = mysql_connect("localhost", "xxxx", "xxxx") 
> >     or die("Couldn't connect.");
> > 
> > $db = mysql_select_db($db_name, $connection)
> >     or die("Couldn't select database.");
> > 
> > $sql = "SELECT COUNT (title) FROM music";
> > 
> > $result = mysql_query($sql,$connection)
> >     or die("Couldn't execute query.");  //<<error from here
> >     
> > $count = mysql_result($result,0,"count(title)");
> > 
> > echo "$count";
> > ?>
> > 
> > -- 
> > PHP General Mailing List (http://www.php.net/)
> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > For additional commands, e-mail: [EMAIL PROTECTED]
> > To contact the list administrators, e-mail: [EMAIL PROTECTED]
> > 
> > -- 
> > PHP General Mailing List (http://www.php.net/)
> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > For additional commands, e-mail: [EMAIL PROTECTED]
> > To contact the list administrators, e-mail: [EMAIL PROTECTED]
> > 
> 
> -- 
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> To contact the list administrators, e-mail: [EMAIL PROTECTED]
> 

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to