Skip to content

Instantly share code, notes, and snippets.

View infoshahin's full-sized avatar

Shahin infoshahin

View GitHub Profile
<div id="google_translate_element"></div><script type="text/javascript">
function googleTranslateElementInit() {
new google.translate.TranslateElement({pageLanguage: 'en', includedLanguages: 'ar,en', layout: google.translate.TranslateElement.InlineLayout.SIMPLE, multilanguagePage: true}, 'google_translate_element');
}
</script><script type="text/javascript" src="//translate.google.com/translate_a/element.js?cb=googleTranslateElementInit"></script>
<?php
$image_file=$_GET['filename'];
echo $image_file;
header("Content-type; application/octect-stream");
header("Content-disposition: attachment; filename=$image_file");
readfile("images/$image_file");
?>