Search found 5 matches
- Fri Aug 22, 2003 1:55 am
- Forum: Site Announcements
- Topic: Web Programmers Needed
- Replies: 22
- Views: 9130
i'm on a roll today.... mistake after mistake, instead of using the url to a file, you need to use the absolute path, if your going to do it that way (with the file_exists() function)... like so.. <? if(file_exists("/Documents and Settings/Administrator/Desktop/HazardNet/bannerr.gif")){ ?> <img src=...
- Thu Aug 21, 2003 3:16 pm
- Forum: General AMV
- Topic: banners?
- Replies: 2
- Views: 657
ahh
ahh thank you
- Thu Aug 21, 2003 2:57 pm
- Forum: General AMV
- Topic: banners?
- Replies: 2
- Views: 657
banners?
where do i submit, or can i submit a banner for a-m-v.org? like the ones that show at the top of the site.
- Thu Aug 21, 2003 11:42 am
- Forum: Site Announcements
- Topic: Web Programmers Needed
- Replies: 22
- Views: 9130
sorry i messed up.... it should be not equal to 0 in the if() statement, but those of you that know php should know what i'm saying. here i'll post the correct code
Code: Select all
<?
if(file_exists("http://www.hazardnet.net/bannerr.gif/")){
?>
<img src="http://www.hazardnet.net/bannerr.gif">
<?}else{}?>
- Thu Aug 21, 2003 11:29 am
- Forum: Site Announcements
- Topic: Web Programmers Needed
- Replies: 22
- Views: 9130
Re: *wants to help!* ^_^7
Hmmmm, a script to detect 404s would be cool... This mod from phpbb.com detects if a remote Avatar works before displaying it. (it displays no Avatar instead of a red X if it can't be found/loaded) Anyways, maybe the code for detecting broken links is similiar? :?: try something like this...(not sa...