Good Morrow!
I'm a developer who hasn't been developing for over a year due to university. I'm into the game again and the problem is that the apache/php/mysql installation appears to have changed from the php 4 days, and I can't friggin get things to work unfortunately.
Here's my problem:
I've installed Apache correctly because it says everything was good.
in httpd.conf I add these lines in different places along the config script.
DocumentRoot "C:\web"
LoadModule php5_module "C:/php/php5apache2.dll"
AddType application/x-httpd-php .php .html
PHPIniDir "C:/php/"
With php.ini, I modified it exactly to this installation tutorial :
http://www.expertsrt.com/tutorials/Matt/install-apache.html
When I did the phpinfo() it loads up great giving me info, but when I make a new page with <? echo("Hello World!"); ?> - there's nothing showing up, when I try and test a MySQL connection, asking to echo true if connection is true, but theres only a blank page.
I'm kinda wondering whats happening?
I'm using Apache 2.0.58 and PHP Version 5.1.4
Please can anyone help?