I am using php4.3 and working on a project that requires the function getmxrr() but I have been told that the function is not implemented in Windows versions of php. Ok. Are there any alternatives to this function?
DNS tools like nslookup and dig (I think) are able to look up mx record information. You could shell to the system and run the command and capture the output. Its bit of a round about way of doing it. You could try looking up the network protocols involved to do an MX lookup. Then use sockets and have PHP issue the query (I haven't looked into this approach so I'm not sure how difficult this would be).
Hi AstroTeg...Thank you, I'll try it.
DNS tools like nslookup and dig (I think) are able to look up mx record information.