Home
» Knowledge base » How to check whether php has been installed properly in apache ?
How to check (from the browser) the version of php running on the server ?
How to check whether php has been installed properly in apache ?
How to check (from the browser) the version of php running on the server ?
27 May 2004, 08:07 am IST
User Rating: 8.6 (31 votes)
Create a new text file with the following content:
<?php phpinfo(); ?>
and save this file as phpinfo.php in the document root of the apache folder. Then call this by entering it in the browser
http://localhost/phpinfo.php
or whatever is your domain and you will see lost of information regarding the php and will also verify whether php is working properly or not


