How to make a Reciprocal link function?

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
Nickiler3
Forum Newbie
Posts: 1
Joined: Sat Aug 10, 2002 6:37 pm

How to make a Reciprocal link function?

Post by Nickiler3 »

I want to make a script that checks to see that members have my link setup on there website. Rather than thumb through my 1,000 page Wrox book I assume this would save time for now.

I know there must be a system function.

Nick :-)
User avatar
volka
DevNet Evangelist
Posts: 8391
Joined: Tue May 07, 2002 9:48 am
Location: Berlin, ger

Post by volka »

you may load a webpage simply with
$page = file($url);
if url-wrappers are enabled.
To find your link use strstr or preg_match on that array
Post Reply