up vote 0 down vote favorite
share [g+] share [fb]

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.

link|improve this question

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 '09 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 '09 at 21:05
feedback

3 Answers

up vote 1 down vote accepted

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

link|improve this answer
feedback

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

link|improve this answer
+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 '09 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 '09 at 20:51
feedback

Works when i define the variable as the following.

$title = urlencode($row['title']);
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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