SyntaxFix
Write A Post
Hire A Developer
Questions
No one mentioned this but there is other possibility. I'm using it for huge sql queries. You can use .= operator :)
$string = "the color is "; $string .= "red"; echo $string; // gives: the color is red