Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <?php
  2. $link_share = "http://yourdomain.com/uri_here";
  3. $twitter_param = array(
  4.   "text" => urlencode("title here"),
  5.   "url" => $link_share //note url as last to prevent ? from failing in url
  6. );
  7.  
  8. $linkedin_param = array(
  9.   "url" => $link_share
  10. );
  11.  
  12. $fb_param = array(
  13.   "t" => urldecode("title here"),
  14.   "u" => $link_share
  15. );
  16. ?>
  17. <div class="social">
  18.         <a href="https://twitter.com/share?<?=http_build_query($twitter_param)?>" class="twitter" target="_blank">
  19.          
  20.         </a>
  21.        
  22.         <a href="http://www.facebook.com/sharer.php?<?=http_build_query($fb_param)?>" onClick="" class="fb" target="_blank">
  23.          
  24.         </a>
  25.        
  26.         <a href="https://www.linkedin.com/cws/share?<?=http_build_query($linkedin_param)?>" class="linkedin" target="_blank">
  27.          
  28.         </a>
  29.       </div>