Hi
umm lets say I have an IP 192.168.244.151 How can make a PHP script make the value of variable $a="192" & $b="168" & $c="244" & d="151" without the dots ?!??
Thanks for your help..
MBH
Easy:
<?php
list($a,$b,$c,$d) = split(".","192.168.244.151");
echo "$a.$b.$c.$d";
?>
That's it.
Bill