I have installed phpreports onto my windows box running PHP5. The basics of phpreports runs fine.
However when it parses the XHTML onto the screen it shows all the HTML tags instead of interpreting them, so my output looks like this on the screen:
If I view the source of the outputted page I see:
The problem is obviously that the HTML shows < and > instead of tag quotes < and >. Anyone any ideas where to look????
However when it parses the XHTML onto the screen it shows all the HTML tags instead of interpreting them, so my output looks like this on the screen:
Code:
<a HREF="[URL unfurl="true"]http://www.whatisacity.com"[/URL] TITLE="explain of what is a city" TARGET="_blank">usertype:</a> <SPAN CLASS="BOLD">admin</SPAN>
name: <SPAN CLASS="BOLD"><a HREF="[URL unfurl="true"]http://localhost/getcustomerinfo.php?name=micchael"[/URL] TITLE="click here to check info about the customer" TARGET="_blank">micchael</a></SPAN>
If I view the source of the outputted page I see:
Code:
<a HREF="[URL unfurl="true"]http://www.whatisacity.com"[/URL] TITLE="explain of what is a city" TARGET="_blank">usertype:</a></TD>
<TD COLSPAN="2" CLASS="HEADER"><SPAN CLASS="BOLD"><a NAME="0"></a>admin</SPAN></TD>
</TR><TR>
<TD WIDTH="50" ALIGN="RIGHT" CLASS="HEADER">name:</TD>
<TD COLSPAN="2" CLASS="HEADER"><SPAN CLASS="BOLD"><a HREF="[URL unfurl="true"]http://localhost/getcustomerinfo.php?name=micchael"[/URL] TITLE="click here to check info about the customer" TARGET="_blank">micchael</a></SPAN>
The problem is obviously that the HTML shows < and > instead of tag quotes < and >. Anyone any ideas where to look????