MyBB Community Forums

Full Version: Quick Script
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Can I get a quick script that converts the input IP to the decimal equivalent?

eg

function convert_ip($ip)
{
//convert to hex

return $converted_ip;
}
You may use this: http://php.net/ip2long
Toungue... should have thought of that earlier... Thanks!