on my toplist i want to show registered sites favicons to appear next to their sites title/description how do i implement this feature im using old worldlist script.
favicon on toplist
Collapse
X
-
Give this a try, just wrap matched in img tag.
PHP Code:$site = file_get_contents('http://somesite.tld');
if (preg_match('/\<link[^\>]+rel="(?:shortcut )?icon"[^\>]+?href="([^"]+?)"/i', $site, $matched)) {
echo $matched[0];
} else {
echo 'No favicons there';
}
http://coding-talk.com/f46/tag-conte...g_match-17152/<!DOCTYPE html PUBLIC "-//WAPFORUM.RS
-
Originally posted by arnage View PostGive this a try, just wrap matched in img tag.
PHP Code:$site = file_get_contents('http://somesite.tld');
if (preg_match('/\<link[^\>]+rel="(?:shortcut )?icon"[^\>]+?href="([^"]+?)"/i', $site, $matched)) {
echo $matched[0];
} else {
echo 'No favicons there';
}
http://coding-talk.com/f46/tag-conte...g_match-17152/
Comment
Comment