Recommended Links
Common For all pages
This section shows you how you can have editable content which is the same throughout the site ( NOTE: It is language specific ) .All the navs below are generated using snippets that are included with the framework, edit this content to see how it was generated
Sub Nav:
Main Nav:
Footer Nav:
Unique Per Page
WHOIS
The 'WHOIS' Class Provides capabilities for IP lookup
See the API documentation at: http://www.phpwhois.com/
Example:
See the API documentation at: http://www.phpwhois.com/
Example:
//This is a controller function
function WHOIS()
{
//First we include the WHOIS class file
require_once '/libs/standalone/WHOIS.php';
//We then create an instance of the class
$whois = new WHOIS();
//Finally we perform a lookup of an IP address
$result = $whois->Lookup($_SERVER['REMOTE_ADDR']);
//You can print the $result variable to see all the
//keys returned by the lookup operation
}