I also noticed that php started automatically adding quotes around anything i echoed.
So if i had a line: echo "Hello World"; it would output "Hello World" (displaying the quotes as if it were part of the string).
I created an entirely new php page with only the following code on it:
Code: Select all
<?php
echo "<form></form";
?>
Parse error: syntax error, unexpected '>' in filename on line ##
Does anybody have any idea what could be causing this to happen?
I would greatly appreciate any suggestions on where to start to look to figure this out.