I am building a multi-language site using codeigniter
I have this language file
$lang['prot_home_1'] = "Our Crash Protection Plan revolutionizes IT support. Traditional IT support firms only help after disaster strikes, and off the shelf anti-virus software requires maintenance to be effective. Our Crash Protection Plan doesn't react";
the problem is if I use " to enclose the text, if I where to call on a class, it breaks the string, but if I use ' to enclose the test, if I get a word like doesn't, it breaks the string.
What would be the best way around this issue?
Just use the escape character,
\, to escape your single quotes.