Since the PhP functions and code I have written all work properly in the browser how can it be that something is not configured properly ?
I mean it does not display the PhP code.. but it does display the html tags I am echoing inside of the code.
example:
phpinfo(); //doesnt display in view source which is good
echo"<html>"; // this tag displays in view source which is undesirable.
I chose PhP for the server side feature of abstraction and would like to abstract visitors from all of the code..
thx,
jk