What version of PHP
Thursday, September 10th, 2009I 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


















