I have this in a php script:
// This is the start of the page, with a META tag to force the browser to
// update the page every 5 seconds
print("\n");
print("<META HTTP-EQUIV=REFRESH CONTENT=\"5; URL=chat_displaytext.php3?");
print("sessionID=$sessionID\">\n");
print("<SCRIPT LANGUAGE=\"javascript\">\n");
print("function update ()\n{\n");
print("input.typeTextForm.enteredText.focus();\n}\n");
print("</SCRIPT>\n");
print("<HEAD>\n");
print("<LINK HREF=\"chat.css\" REL=\"stylesheet\" TYPE=\"text/css">\n");
print("</HEAD>\n");
and I get this error:
Warning: Unexpected character in input: '\' (ASCII=92) state=1 in e:\apache\htdocs\new_chat\chat_displaytext.php3 on line 43
Parse error: parse error in e:\apache\htdocs\new_chat\chat_displaytext.php3 on line 44
where line 43 is the line off the CSS link...
what is wrong with it ? and how can I correct it ?