Why doesn't PHP parse my scripts?
I'm trying to get the php executable to parse scripts, but it doesn't work. I am running something like this:
php c: \ test.php
and test.php contains the following:
<?
echo 'hello!';
?>
and that's exactly what the command returns. It returns raw code. How can I get it to actually parse the code and return "hello!" instead of this?
0
a source to share