Is your php working?

Used Text Editor: Netbeans

Note: make a “new folder” under  wamp/www.

1. Create ProjectName:
File->New Project->select PHP->next->Project name: info_php,  Source Folder:  browse new folder you created on under wamp/www.  Finish

2. Make a new php file. Right click on info_php . Give a file name , say Php_info

3. Add php info function.

<?php
phpinfo();
?>

4. Check it on browser:  http://localhost/info_php/php_info.php

Note: Quick test to make sure if php is running or not.  It also shows the information about php in your web server.