Re: [PHP-LANG] Condition for link not found
[email protected] ("JM") Wed, 19 Jun 2002 17:27:54 -0400
| Newsgroups | php.lang |
|---|---|
| Message-ID | <[email protected]> |
Joey, great, the checking works! But how do I actually have the url open in
the current window? What do I replace the line 'print"The url exists!"'
with?
$fp = @fopen("http://www.ibm.com","r");
if ($fp)
print"The url exists!";
else
print"The url does not exist";
"Joey Smith" <[email protected]> wrote in message
news:[email protected]...
> http://www.php.net/fopen
>
> $f = fopen("http://www.ibm.com", "r") or ...;
>
>
> On Wed, Jun 19, 2002 at 02:28:15PM -0400, JM wrote:
> > I'm a beginner at PHP but couldn't find this in the documentation.
> >
> > Can I construct a php condition that can check if a url exists?
> >
> > Something like this:
> >
> > if www.ibm.com is found
> > then href=www.ibm.com
> > else href=www.mysite.com/notfound.html
> >
> >
> >
> >
> >
> > --
> > PHP Language Mailing List (http://www.php.net/)
> > To unsubscribe, visit: http://www.php.net/unsub.php