XOOPS 2.3.1 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News XOOPS 2.3.1 (Default branch)
# 1  
Old 11-17-2008
XOOPS 2.3.1 (Default branch)

ImageXOOPS is a dynamic OO (Object Oriented) portalscript written in PHP. It supports mySQL, and isan ideal tool for developing small to largedynamic community Web sites, intra-companyportals, corporate portals, Web logs, and much more.License: GNU General Public License (GPL)Changes:
The objective of the 2.3 release series is to merge the existing 2.0 and 2.2 branches, and to build a bridge towards the next generation of the system, 3.0. Users will be able to learn some of new features that will be available in 3.0, while developers can understand better the direction of XOOPS development, and designers can learn what features will be supported in the future.Image

Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
GEOIP_ID_BY_NAME(3)							 1						       GEOIP_ID_BY_NAME(3)

geoip_id_by_name - Get the Internet connection type

SYNOPSIS
int geoip_id_by_name (string $hostname) DESCRIPTION
The geoip_id_by_name(3) function will return the Internet connection type corresponding to a hostname or an IP address. The return value is numeric and can be compared to the following constants: o GEOIP_UNKNOWN_SPEED o GEOIP_DIALUP_SPEED o GEOIP_CABLEDSL_SPEED o GEOIP_CORPORATE_SPEED PARAMETERS
o $hostname - The hostname or IP address whose connection type is to be looked-up. RETURN VALUES
Returns the connection type. EXAMPLES
Example #1 A geoip_id_by_name(3) example This will output the connection type of the host example.com. <?php $netspeed = geoip_id_by_name('www.example.com'); echo 'The connection type is '; switch ($netspeed) { case GEOIP_DIALUP_SPEED: echo 'dial-up'; break; case GEOIP_CABLEDSL_SPEED: echo 'cable or DSL'; break; case GEOIP_CORPORATE_SPEED: echo 'corporate'; break; case GEOIP_UNKNOWN_SPEED: default: echo 'unknown'; } ?> The above example will output: The connection type is corporate PHP Documentation Group GEOIP_ID_BY_NAME(3)