PHP code not executing, new to PHP
Last week I started playing around with LAMP Ubuntu and I didnt have any issues. Today some code wasn't working so I tried running this in index.php:
<?php phpinfo(); ?>
This does开发者_如何学JAVAn't work when I connect to localhost in my browser, but it works in testphp.php at localhost/testphp.php
Any suggestions?
Thanks
Try renaming the file to index.php
If you mean that code doesn't get executed when you access http://localhost/, then you should try to add
DirectoryIndex index.html index.php
to your apache's conf file.
精彩评论