| Tutorials Main Latest Tutorials Popular Tutorials Top Rated Tutorials |
| Login to See your Favorite Tutorials |
| Description: Ever wondered what version of nuke your using, well this tutorial will show you how to find out. | |
| Version: 1.0 | |
| Added on: 30 May 2006 | |
| Author: Admin | |
| Difficulty Level: Very Easy | |
| Views: 303 | |
Make a new text document on your desktop and rename it to nukever.php or whatever you like !
then open it in your preferred editor and paste
| Code: |
| <?php
require_once("mainfile.php"); if (!isset($Version_Num)) { if ($result = $db->sql_query("SELECT Version_Num FROM ".$prefix."_config")) { list($Version_Num) = $db->sql_fetchrow($result); $db->sql_freeresult($result); } else { $Version_Num = "Unknown"; } } echo "Your PHP-Nuke version is $Version_Num"; die(); ?> |