HEX
Server: Apache
System: Linux pdx1-shared-a1-38 6.6.104-grsec-jammy+ #3 SMP Tue Sep 16 00:28:11 UTC 2025 x86_64
User: mmickelson (3396398)
PHP: 8.1.31
Disabled: NONE
Upload Files
File: /home/mmickelson/martyknows.com/wp-content/themes/dark-wood/sharelist.php
<?php
    $shareicons = array("delicious","digg","facebook","stumbleupon","technorati","twitter");
    $delurl = "http://delicious.com/post?url=".get_permalink()."&amp;title=".get_the_title()."&amp;notes=".get_the_excerpt();
    $diggurl = "http://digg.com/submit?phase=2&amp;url=".get_permalink()."&amp;title=".get_the_title()."&amp;bodytext=".get_the_excerpt();
    $facebookurl = "http://www.facebook.com/share.php?u=".get_permalink()."&amp;t=".get_the_title();
    $stumbleurl = "http://www.stumbleupon.com/submit?url=".get_permalink()."&amp;title=".get_the_title();
    $technoratiurl = "http://technorati.com/faves?add=".get_permalink();
    $twitterurl = "http://twitter.com/home?status=".get_the_title()."%20-%20".get_permalink();
    $shareurlarr = array($delurl,$diggurl,$facebookurl,$stumbleurl,$technoratiurl,$twitterurl);
    $shareentry = "";
    $count = 0;
    foreach($shareicons as $icon) {
        $shareentry .= '<a href="'.$shareurlarr[$count].'" title="Share this article on '.ucwords($icon).'"><img class="shareiconimg" src="'.get_bloginfo('template_url').'/images/bookmark_icons/'.$icon.'.png" /></a>';
        $count++;
    }
    echo $shareentry;
?>