hey, im using the following script for a PHP gBook but every time someone enters they're details and clicks submit it come's up with an error messgae saying 'Parse Error line 21'. I'm still learning when it comes to PHP scripts and was wondering if someone could help me out thanks, id really aprreciate it....
Have you tried removing the parentheses from around this variable?
Quote:
. ($message) .
You're not passing $message as an argument to anything (as you did with
$name, which you're passing to a strip_tags() function two cells
earlier), so removing those parens may solve your problem right there
(just eyeballing it, tho)...