I don't know how it's done in PHP but I believe that you can take the value stored inside the variable [ip address] and count over before the first dot [doing a string_copy] and take those (3) numbers and store them into a temp variable (temp1).
Next, do the same procedure on the [ipaddress] variable, but this time capture the next set of numbers you want to keep by doing another [string_copy] ... store them into another temp variable (temp2).
Then join the two variables ($temp1 and $temp2) and store them into $admin2_ip ... I can do this in perl but I don't know how it's done in PHP.
Maybe someone here can tell us how to perform this in PHP?
|