PHP error in Netbeans IDE?

From echo " Click here to Login"; to echo " Click here to Login"; You have to escape those "" or use '' like so: echo ' Click here to Login'; But watch out on that first echo you MUST use "" since you are using variables in it.

Thanks dude! Your answer helped! – JavaNoob Sep 8 '10 at 4:55 You are welcome sir!

– Iznogood Sep 8 '10 at 5:04.

Try: echo "Thank You for registering {$first_name}! Your username is {$username}", ' Click here to Login'; or: echo sprintf("Thank You for registering %s! Your username is %s\n Click here to Login", $first_name, $username).

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions