What version of PHP
I was asked how to get the version of PHP , this was due to the minimum requirements of a script stating PHP 5 and a user wanted to know how he could check what his host supplied.
This is the simplest version, save as version.php, upload and then open it in your web browser.
<?php
echo phpversion();
?>
On my XAMPP installation it displayed 5.2.6
Related posts:
- FTP file upload example upload a single file to a FTP server // FTP...
- Get The Current Working Directory This example will get the current working directory <?php $current...
- Manual Installation Tutorial for PHP 5 on IIS 5.1 (Windows XP Pro) Before we begin any installation steps, the first thing we...
Related posts brought to you by Yet Another Related Posts Plugin.
Tags: php version number, phpversion



















