I am new in PTR configuration. I dont understand what is going on in this records..
$ip_initial = gethostbyname('radio-lolipop.com'); //returns 149.56.132.111
$domain = gethostbyaddr($ip_initial); //returns 111.ip-149-56-132.net
$ip_final = gethostbyname($domain); // returns 149.56.132.111
print_r(dns_get_record($domain)); //in A record it is 149.56.132.111
print_r(dns_get_record('radio-lolipop.com')); //in A record it is 149.56.132.111
I found matched result here
I found unmatched result here
here is DNS entry lookup found in dnsgoodies.com
here is reverse lookup found in dnsgoodies.com. "Authoritative answers can be found from:" is null
I am totally confused with those results.
Questions:
Is my PTR correct? If not how i will correct it?
What is the correct code to check PTR record of my domain in php?
Is my reverse DNS accessible by all mail client? how they are handling this?