Php string code error

I have an issue. How can I fix it ?
my webiste.
my error:
PHP Warning: Unexpected character in input: '' (ASCII=92) state=1

A (broken) link to the site isn’t going to help diagnose a PHP problem.
We need to see the relevant code, the warning should state on which line it occured, in which script.

1 Like

Also this is a WARNING level statement.

The actual ERROR (Presumably FATAL) line that came after it would be more informative.

I wonder whether the issue here is that the OP has a mismatch of opening and closing quotes, and this is just a quote that has no partner. If so, the issue could be anywhere else in the code prior to where the parser finds this stray one.

ASCII 92 would be a backslash. I’d wager its more likely OP has tried to close a string with a backslash at the end, and it’s misinterpreted it as an escape character.