How can i see the version of PHP my host is using, I am on a subdomain.
Here's an example from the php.net website, using the phpversion(); function:
<?php // prints e.g. 'Current PHP version: 4.1.1' echo 'Current PHP version: ' . phpversion(); ?>
For more info: http://www.php.net/manual/en/function.phpversion.php
If you want (lots) more info try:
<?php phpinfo(); ?>
yep