Cody
Cody

Reputation: 840

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 doesn't work when I connect to localhost in my browser, but it works in testphp.php at localhost/testphp.php

Any suggestions?

Thanks

Upvotes: 0

Views: 183

Answers (2)

galymzhan
galymzhan

Reputation: 5523

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.

Upvotes: 0

ensnare
ensnare

Reputation: 42093

Try renaming the file to index.php

Upvotes: 1

Related Questions