tester_geniusd
04-03-2006, 05:22 AM
Hello
How i can determine php version from php script:confused:
Thanks
Kind regards
How i can determine php version from php script:confused:
Thanks
Kind regards
![]() | View Full Version : How i can determine php version? tester_geniusd 04-03-2006, 05:22 AM Hello How i can determine php version from php script:confused: Thanks Kind regards zoid 04-03-2006, 05:41 AM <?php phpinfo(); ?> Burhan 04-03-2006, 07:19 AM echo phpversion(); thartdyke 04-03-2006, 09:42 PM There is also a predefined constant: echo PHP_VERSION; |