PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!
What i want is to sometimes when loading hte page show as red, blue, or green text. Right now, it doesn't work at all and i have no idea why. Thanks in advance
$the_jacka = "said "my boy got botched on his first case, hate to see the look on his mommas face". it was such a dope verse!";
?
you opened, closed, then later re-opened the string leaving the parts in the middle outside of it.
so if you want to print the same string character you enclose it in inside the literal you have to escape it with a backslash
to avoid this i always use two things, syntax highlighting editor (notepad++) and if i think i might use double quotes in a string i always use a single quote to open it.