vote up 0 vote down star

I have a variable that im define with another variable and some text.

$title = "New Amsbrook School" //demo text
$message = "$title just added, Congrats!";

Echoing of $message returns New just added, Contrats!

Problem is if there is a space in $title, it breaks and doesnt show the rest of the contents.

flag

2  
You know, adding the semicolon to the question makes your question make no sense. Code as it is now will run correctly. – Byron Whitlock Jul 1 at 21:00
Byron is correct; don't fix your code after the fact or we will all be confused whenever someone stumbles upon this question later. I removed the semicolon. – Paolo Bergantino Jul 1 at 21:05

3 Answers

vote up 1 vote down check

Needs a semi-colon at the end of the first line, before the comment.

link|flag
vote up 0 vote down

Works when i define the variable as the following.

$title = urlencode($row['title']);
link|flag
vote up 3 vote down

You missed a semicolon at the end of $title string ;-)

link|flag
+1 - nice, I was scratching my head trying to figure out what the heck he was doing wrong. Figured it had to be something simple like that :) – Eric Petroelje Jul 1 at 20:51
3  
I'm stocked that it even got parsed. Patrick, make sure you have error-reporting turned on while developing. It will point this stuff out immediately. – Jonathan Sampson Jul 1 at 20:51

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.