On Friday 16 February 2001 18:27, Jeff Oien wrote:
> 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.


> $sql = "SELECT COUNT (title) FROM music";

I found that often MySQL doesn't like if there's a space between the 
function name and the opening bracket, i.e. try writing "COUNT(title)" 
instead of "COUNT (title)".

-- 
Christian Reiniger
LGDC Webmaster (http://sunsite.dk/lgdc/)

"World domination. Fast." (Linus Torvalds about Linux)

--
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