Skip to content

Instantly share code, notes, and snippets.

@jimmyhillis
Created April 29, 2014 06:06
Show Gist options
  • Save jimmyhillis/11391728 to your computer and use it in GitHub Desktop.
Save jimmyhillis/11391728 to your computer and use it in GitHub Desktop.
Share URL strings from variables
<?php
$tweet_url = 'http://twitter.com/intent/tweet'
. '?text=' . urlencode($PAGE_TITLE)
. '&url=' . urlencode($PAGE_URL)
. '&via=' . $TWITTER_UN;
$facebook_url = 'https://www.facebook.com/dialog/feed'
. '?app_id=' . urlencode(FACEBOOK_APP_ID)
. '&link=' . urlencode($PAGE_URL)
. '&name=' . urlencode($PAGE_TITLE)
. '&description=' . urlencode($SHARE_DESCRIPTION)
. '&redirect_uri=' . urlencode($PAGE_URL);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment