Thanks Guys.
Made it.
Case closed!
Search found 6 matches
- Mon Nov 14, 2005 4:08 pm
- Forum: PHP - Code
- Topic: Big Problem with the code!
- Replies: 12
- Views: 1339
- Mon Nov 14, 2005 4:02 pm
- Forum: PHP - Code
- Topic: Big Problem with the code!
- Replies: 12
- Views: 1339
- Mon Nov 14, 2005 3:21 pm
- Forum: PHP - Code
- Topic: Big Problem with the code!
- Replies: 12
- Views: 1339
- Mon Nov 14, 2005 3:17 pm
- Forum: PHP - Code
- Topic: Big Problem with the code!
- Replies: 12
- Views: 1339
- Mon Nov 14, 2005 3:04 pm
- Forum: PHP - Code
- Topic: Big Problem with the code!
- Replies: 12
- Views: 1339
- Mon Nov 14, 2005 2:53 pm
- Forum: PHP - Code
- Topic: Big Problem with the code!
- Replies: 12
- Views: 1339
Big Problem with the code!
I need help solving this code:
Thank you so' much.
Code: Select all
function Dot2LongIP ($IPaddr)
{
if ($IPaddr == "") {
return 0;
} else {
$ips = split ("\.", "$IPaddr");
return ($ips[3] + $ips[2] * 256 + $ips[1] * 65536 + $ips[0]
*16777216); }
}Thank you so' much.