Search found 3 matches

by guided1
Fri Mar 10, 2006 12:25 pm
Forum: General Discussion
Topic: Top Five Online web resources for development?
Replies: 9
Views: 992

by guided1
Fri Mar 10, 2006 12:16 pm
Forum: PHP - Code
Topic: [SOLVED]simple array question
Replies: 7
Views: 1176

this is because your concatenated string will end up like this... a.b.c. when you explode you will get a b c [empty string] if you add a substring($var_saved_tags,0,-1); at the end of you loop it should work fine. edit: a better way of doing this is inside your loop put $array_saved_tags[] = $get_ta...
by guided1
Thu Mar 09, 2006 8:26 am
Forum: PHP - Code
Topic: Prevent logos and images from web page
Replies: 9
Views: 1232

hot linking? what's that? Is that where other people link directly to your images? if so... you can fix that with a .htaccess (assuming apache ofcourse...) Options +FollowSymlinks RewriteEngine On RewriteCond %{HTTP_REFERER} !^$ RewriteCond %{HTTP_REFERER} !^http://(www\.)?your-url\.com/ [nc] Rewrit...