Hello,
I just installed Apache24 on my FreeBSD server. It runs just fine.
After that, I installed php55 and php55-extension because I need to use mysqli. The problem is that the PHP scripts are not executed. I tried:
That didn't work. I did
That didn't work either. Still, I have spotted something strange: if I do
I see
The PHP script looks like it's just parsed to HTML without getting executed... What could be the problem???
I just installed Apache24 on my FreeBSD server. It runs just fine.
After that, I installed php55 and php55-extension because I need to use mysqli. The problem is that the PHP scripts are not executed. I tried:
Code:
<?php
phpinfo();
?>
Code:
<?php
echo "Hey. I'm working!!!!";
?>
Code:
<?php
<p> HEY </p>
echo "hello";
?>
Code:
HEY
echo "hello";?>