Posted by Luke - eat.lemons@gmail.com on 08/22/06 12:22
Hi all,
I need to test a IP for a PTR record and display the outcome.
The problem i have is i need to test with 2 vars.
$host = the ip
$hostmask = the hostmask
How do i use 2 vars in one function so i can call it like:
test_ptr($host, $hostmask)
Ive tested this but cant seem to get it to work.
code below. Thanks in advance
function test_ptr($host) {
if (strlen(gethostbyaddr($host))==
strlen(gethostbyname("$hostmask"))) {
$emsg = " !!Couldent find PTR Record!!";
}
}
Navigation:
[Reply to this message]
|