From: "Denham Eva" <[EMAIL PROTECTED]>
> Parse error: parse error, unexpected $end
> Please can someone help!

You need an editor that does source code highlighting. If you had that, you
would not have encountered this error because you'd have noticed the
unterminated string here

> $query = "insert into work
>
> values('".$category."','".$description."','".$requestor."');

Whenever you see that error, or get a parse error on the very last line of
the PHP script, it usually means you missed a quote or brace somewhere.

---John Holmes...

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to