解析错误:语法错误,第6行/home/content/94/10213294/html/ROOTNAME/videopage/settings.php中的意外T_STRING

-1 php syntax parsing

请原谅我的无知,但经过深入研究后,我似乎找不到为什么我的视频网站无法正常工作的答案......这是我不断得到的错误信息:

解析错误:语法错误,第6行/home/content/94/10213294/html/ROOTNAME/videopage/settings.php中的意外T_STRING

这是代码:

define('BUSINESS_NAME', 'The Biz Inc');
define('BUSINESS_CONTACT', '6222 8989 8988');
define('BUSINESS_ADDRESS', '123 Story Street Anywhere NY 11218');
define('MAIN_HEADLINE', 'You Are Turning Away A Large Portion Of Your Customers<br />They Want Speed & Simplicity.<br />Don't You...?');
define('SUB_HEADLINE', '(Watch the short video presentation below...)');
define('DISPLAY_FORM_DELAY', '1000');
define('CALL_TO_ACTION', 'Enter Your Details Below To<br />Receive Your Sample Mobile Website...');
define('PRIVACY_MESSAGE', 'Your privacy is 100% guaranteed.<br />Your information will only be used to contact you regarding this service.');
Run Code Online (Sandbox Code Playgroud)

谁能帮我找到第6行出了什么问题的解决方案?如果我模糊不清,那是因为我不知道你可能需要什么其他信息.请问我,我会提供所需的任何细节.

新手提前感谢您的帮助.救命!

Sco*_*ets 5

define('MAIN_HEADLINE', 'You Are Turning Away A Large Portion Of Your Customers<br />They Want Speed & Simplicity.<br />Don't You...?');
Run Code Online (Sandbox Code Playgroud)

来自"不要你"的撇号需要逃脱.现在它认为这是字符串的结尾,然后是一些未定义的符号(或T_STRING).