Forum Moderators: coopster
Is there any way to check if a particular url/page exists using php, for instance check within my script if [webmasterworld.com...] exists and act accordingly (big IF)
thx in advance
A few lines of code will allow you to access a web page in the same way a browser would. One of the things you can bring back to PHP is the HTTP header information, including the response code. (200 OK, 404 Not Found etc). This will give you the information you're after.