Well, when you installed the applications, you should have known which versions you downloaded. The version number is in the name of the download.
But aside from that if you're on someone else's system or everything was pre-installed, try the following:
Apache:
For Windows: Look at the properties for apache.exe and it'll tell you the version number. Or type in the following at a command prompt from the directory where apache.exe resides: apache -v
For Linux: Type in the following at the command prompt: httpd -v
Or if it was installed as an RPM: rpm -qa | grep apache
MySQL:
For Windows & Linux: Once you have MySQL running, connect to the server from a command prompt. Once connected, type in: SELECT VERSION();
PHP:
For Windows: Look at the properties for php.exe and it'll tell you the version number. Or type in the following at a command prompt from the directory where php.exe resides: php -v
For Linux: Type in the following at the command prompt: php -v
|