Hi Ken
You view php files exactly the same way you would html files; from your Apache root web directory. The url could look like this:
http://localhost/phpfilename.php
The extension may be .php or .php3, it depends on how you set up your apache .conf file to recognize php code.
The phpdev2 folder, I am assuming, is where your php exec file is located. This is the path that your Apache .conf file has a reference to. When a .php file is access on the server, in the web root, Apache uses this path to locate the php.exe to interpret the code properly.
As Saurabh said prior, create a file named phpinfo.php with the following code:
<?php
phpinfo();
?>
Save it into your Apache web root (...Apache Group\Apache\htdocs)
The URL to test this will be "localhost/phpinfo.php"
This should work assuming the Apache conf file is configured correctly.
--BOb