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 | |
//if the browser is Microsoft IE | |
if (strstr($_SERVER['HTTP_USER_AGENT'], "MSIE")) { | |
//if (ereg('MSIE 6',$_SERVER['HTTP_USER_AGENT'])) | |
echo "Your Error Message Here"; | |
}?> |
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 | |
//if the browser is Microsoft IE | |
//if (ereg('MSIE 6',$_SERVER['HTTP_USER_AGENT'])) { | |
if (strstr($_SERVER['HTTP_USER_AGENT'], "MSIE")) { | |
//if (ereg('MSIE 6',$_SERVER['HTTP_USER_AGENT'])) | |
header("Location: your_error_page.php") | |
}?> |
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 | |
// place this code inside a php file and call it f.e. "download.php" | |
$path = $_SERVER['DOCUMENT_ROOT']."/path2file/"; // change the path to fit your websites document structure | |
$fullPath = $path.$_GET['download_file']; | |
if ($fd = fopen ($fullPath, "r")) { | |
$fsize = filesize($fullPath); | |
$path_parts = pathinfo($fullPath); | |
$ext = strtolower($path_parts["extension"]); |
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
textarea { overflow: auto; } |
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 | |
// uses Google's http://goo.gl/ URL shortener | |
/* Enter your url below */ | |
$url = "aroundtheweb.info"; | |
/* Function to get the short url */ | |
function get_short_url($url) { | |
$ch = curl_init("http://goo.gl/api/url?url=" . urlencode($url)); | |
curl_setopt($ch, CURLOPT_POST ,1); |
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 | |
// local file that should be send to the client | |
$local_file = 'test-file.zip'; | |
// filename that the user gets as default | |
$download_file = 'your-download-name.zip'; | |
// set the download rate limit (=> 20,5 kb/s) | |
$download_rate = 20.5; | |
if(file_exists($local_file) && is_file($local_file)) { | |
// send headers |
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
$.alerts.okButton="OKAYYYYYYYYYY"; | |
$.alerts.cancelButton="CANCELLLLLLLLLL"; |
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 | |
// Download the latest version of TwitterOAuth from http://github.com/abraham/twitteroauth/downloads | |
// Unpack the download and place the twitteroauth.php and OAuth.php files in the same directory as this file. | |
// Register an application at http://dev.twitter.com/apps and from your new apps page get "my access token". | |
require_once('twitteroauth.php'); | |
$connection = new TwitterOAuth('app consumer key', 'app consumer secret', 'my access token', 'my access token secret'); | |
$connection->post('statuses/update', array('status' => 'text to be tweeted')); |
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
var supports = (function() { | |
var div = document.createElement('div'), | |
vendors = 'Khtml Ms O Moz Webkit'.split(' '), | |
len = vendors.length; | |
return function(prop) { | |
if ( prop in div.style ) return true; | |
prop = prop.replace(/^[a-z]/, function(val) { | |
return val.toUpperCase(); |
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
$ git clone git://github.com/nikhilben/Tumblr-S60 |