Also, if you check many URL's from the same script, make sure neither PHP nor the browser times out. For PHP, set_time_limit() and for the browser echo a space and flush() after each test.
Bogdan Bogdan Stancescu wrote: > Try $fp=@fopen( etc > > Bogdan > > Tony wrote: > >> I have a database and I am writing a script to auto-update some >> information >> in the database. >> That requires me to read data from database, find the URL, read the URL, >> find the information I want, then update it in the database. >> My problem is, for example I read one record from database who's URL is >> http://www.somedomain.com/. >> And I try to read the URL with fopen() for information: >> >> $fp = fopen(�http://www.comedomain.com/�, �r�); >> >> if (!$fp) >> { >> echo �URL not available.�; >> exit; >> } >> >> If the URL is available, things will work fine. >> But if the URL is NOT available, I will get a error saying �attempt >> to load >> file �MyFile�s URL� failed� from browser. >> It�s supposed to output the string �URL not available�, isn�t it? >> Anyone know how to get around with this? >> >> >> Tony S. Wu >> [EMAIL PROTECTED] >> >> >> >> > > > > -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
