It is fairly simple to parse a web page to see all the pages it points to.
That's one of the things you do with HTML-Parser or HTML-Tree.
To know _all_ web pages that point at a particular one you have to parse all
pages that _might_ point at it and discard the ones that don't.
A less expensive alternative that requires access to your web site logs is
to track the referer pages when your target page is requested. This won't
show all pages, but it will show you which ones were actually used to find
your page during your sample period.
--
Mac :})
** I may forward private database questions to the DBI mail lists. **
----- Original Message -----
From: ". Hima" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Monday, July 10, 2000 4:33 PM
Subject: Help with Perl
> I will be obliged if you can tell me how to get a list of all the source
> URLs to a particular webpage. In other words, given a URL how can we get a
> list of all the pages that point to it.