Hey.... does this sound possible, to build a script that checks another website to see if the specific code is there (for example: that leads back to your site). Kind of like a link checker script, could be used for programs that require another website to link back to yours. Thanx for your help if you have any ideas!
Jason R.
It sounds possible...use the file functions (fopen, fread, fgets, etc) to read the remote HTML file, and use either regular expressions or string functions to find your link.
Diego
What diego25 said. The job of searching the page for a link to your site is of course easier if you require them to use a specific URL, because then you know exactly what you're looking for - just make sure they haven't hidden it away in a comment tag!