This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $(function(){ | |
| $("select#ctlJob").change(function(){ | |
| $.getJSON("/select.php",{id: $(this).val(), ajax: 'true'}, function(j){ | |
| var options = ''; | |
| for (var i = 0; i < j.length; i++) { | |
| options += ' | |
| ' + j[i].optionDisplay + ' | |
| '; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| $page_id = "YOUR PAGE-ID"; | |
| $xml = @simplexml_load_file("http://api.facebook.com/restserver.php?method=facebook.fql.query&query=SELECT%20fan_count%20FROM%20page%20WHERE%20page_id=".$page_id."") or die ("a lot"); | |
| $fans = $xml->page->fan_count; | |
| echo $fans; | |
| ?> | |
| //MAKE FIRST WORD BOLD |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| $time = time () ; | |
| //This line gets the current time off the server | |
| $year= date("Y",$time); | |
| //This line formats it to display just the year | |
| echo "Copyright ©" . $year . " YOUR-SITE-NAME | All Rights Reserved"; | |
| //this line prints out the copyright date range |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Changes XML to JSON | |
| function xmlToJson(xml) { | |
| // Create the return object | |
| var obj = {}; | |
| if (xml.nodeType == 1) { // element | |
| // do attributes | |
| if (xml.attributes.length > 0) { | |
| obj["@attributes"] = {}; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function detect_city($ip) { | |
| $default = 'UNKNOWN'; | |
| if (!is_string($ip) || strlen($ip) < 1 || $ip == '127.0.0.1' || $ip == 'localhost') | |
| $ip = '8.8.8.8'; | |
| $curlopt_useragent = 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2) Gecko/20100115 Firefox/3.6 (.NET CLR 3.5.30729)'; | |
| $url = 'http://ipinfodb.com/ip_locator.php?ip=' . urlencode($ip); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function url_exists($url) { | |
| $hdrs = @get_headers($url); | |
| return is_array($hdrs) ? preg_match('/^HTTP\/\d+\.\d+\s+2\d\d\s+.*$/',$hdrs[0]) : false; | |
| } | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| try { | |
| $count = 6; | |
| $tweet=json_decode(file_get_contents("http://api.twitter.com/1/statuses/user_timeline/atrueresistance.json?count=".$count."" )); | |
| for ($i=1; $i < $count; $i++){ | |
| //Assign feed to $feed | |
| $feed = $tweet[($i-1)]->text; | |
| //Find location of @ in feed | |
| $feed = str_pad($feed, 3, ' ', STR_PAD_LEFT); //pad feed |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //CONVERTS AN IMAGE TO CANVAS | |
| // Converts image to canvas; returns new canvas element | |
| function convertImageToCanvas(image) { | |
| var canvas = document.createElement("canvas"); | |
| canvas.width = image.width; | |
| canvas.height = image.height; | |
| canvas.getContext("2d").drawImage(image, 0, 0); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //CONVERT CANVAS TO AN IMAGE | |
| // Converts canvas to an image | |
| function convertCanvasToImage(canvas) { | |
| var image = new Image(); | |
| image.src = canvas.toDataURL("image/png"); | |
| return image; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //CALCULATE AGE | |
| function birthday ($birthday){ | |
| list($year,$month,$day) = explode("-",$birthday); | |
| $year_diff = date("Y") - $year; | |
| $month_diff = date("m") - $month; | |
| $day_diff = date("d") - $day; | |
| if ($day_diff < 0 || $month_diff < 0) | |
| $year_diff--; | |
| return $year_diff; |