View Single Post
Old 10-06-2011, 04:37 PM   PM User | #10
coin
New Coder

 
Join Date: Sep 2011
Posts: 24
Thanks: 1
Thanked 3 Times in 3 Posts
coin is an unknown quantity at this point
You accidentally threw an extra double quote in on your last example.
PHP Code:
//This will work:
$Comment "Joe blogg's latest blog is: " .get_comment()"; 
Should be
PHP Code:
//This will work:
$Comment "Joe blogg's latest blog is: " .get_comment(); 
coin is offline   Reply With Quote