Html, JAVA,DOTNET,Javascript, PHP, and JQuery Scripts and its issues with solutions
Friday, 12 September 2014
Thursday, 11 September 2014
Regional Language in Google Transliteration API
<script src="https://www.google.com/jsapi" type="text/javascript"> </script> <script type="text/javascript"> google.load("elements", "1", { packages: "transliteration" }); function onLoad() { var options = { sourceLanguage: google.elements.transliteration.LanguageCode.ENGLISH, destinationLanguage: [google.elements.transliteration.LanguageCode.TAMIL], shortcutKey: 'ctrl+g', transliterationEnabled: true }; var control = new google.elements.transliteration.TransliterationControl(options); control.makeTransliteratable(['transliterateTextarea']); } google.setOnLoadCallback(onLoad); </script> <div class="Google-transliterate-Way2blogging"> Type in Hindi (Press Ctrl+g to toggle between English and Tamil)<br> <textarea id="transliterateTextarea" style="width:600px;height:200px;resize:none;"> </textarea> <span style="font-weight:bold;font-size:10px;float:right;margin:5px;"> </span> </div>
Saturday, 6 September 2014
how to find server space in php?
// $ds contains the total number of bytes available on "/" $ds = disk_total_space("/"); // On Windows: $ds = disk_total_space("C:"); $ds = disk_total_space("D:");
Hoe to find os by using php?
echo php_uname(); echo PHP_OS; /* Some possible outputs: Linux localhost 2.4.21-0.13mdk #1 Fri Mar 14 15:08:06 EST 2003 i686 Linux FreeBSD localhost 3.2-RELEASE #15: Mon Dec 17 08:46:02 GMT 2001 FreeBSD Windows NT XN1 5.1 build 2600 WINNT */ if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') { echo 'This is a server using Windows!'; } else { echo 'This is a server not using Windows!'; }
Thursday, 4 September 2014
To Calculate distance between two latitude & longitude in php
Method I : function distance($lat1, $lon1, $lat2, $lon2, $unit) { $theta = $lon1 - $lon2; $dist = sin(deg2rad($lat1))*sin(deg2rad($lat2))+ cos(deg2rad($lat1))*cos(deg2rad($lat2))*cos(deg2rad($theta)); $dist = acos($dist); $dist = rad2deg($dist); $miles = $dist * 60 * 1.1515; $unit = strtoupper($unit); if ($unit == "K") { return ($miles * 1.609344); } else if ($unit == "N") { return ($miles * 0.8684); } else { return $miles; } } echo distance(11.01078,76.93433,11.14137,78.59412,10.1, "M") . " Miles
"; echo distance(11.01078,76.93433,11.14137,78.59412,10.1, "K") . " Kilometers
"; echo distance(11.01078,76.93433,11.14137,78.59412,10.1, "N") . " Nautical Miles
"; Method II: function calculateDistance($latitude1, $longitude1, $latitude2, $longitude2) { $theta = $longitude1 - $longitude2; $miles = (sin(deg2rad($latitude1)) * sin(deg2rad($latitude2))) + (cos(deg2rad($latitude1)) * cos(deg2rad($latitude2)) * cos(deg2rad($theta))); $miles = acos($miles); $miles = rad2deg($miles); $miles = $miles * 60 * 1.1515; return $miles; }
Wednesday, 3 September 2014
How to hidden you IP & proxy?
1. Open Internet Explorer and Select Proxy. 2. Choose Port and Proxy Address, right click on it and copy it. 3. Go to Tools > Internet Options 4. Select Connection Tab and go to LAN Settings. 5. Select Use a proxy server for your LAN in Proxy server 6. Paste Port & Proxy server in Port Box and Address box. 7. Click OK and Exit.
Resize image by using PHP GD functions
header('Content-Type: image/jpeg'); $w=100; $h=100; $filename = 'picture.jpg'; for($i=0;$i<10;$i++){ $rfname="images/re$i.jpg"; resize($filename,$w,$h,$rfname); } function resize($filename,$w,$h,$rfname){ list($width, $height) = getimagesize($filename); $image_p = imagecreatetruecolor($w,$h); $image = imagecreatefromjpeg($filename); imagecopyresampled($image_p, $image, 0, 0, 0, 0, $w, $h, $width, $height); imagejpeg($image_p,'', 100); imagejpeg($image_p,$rfname); }
Subscribe to:
Posts (Atom)
Feet/Inches to Meters Converter & Lbs to Kgs Converter
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <title>Feet/Inches ⇄...
-
<?php $to = "somebody@example.com, somebodyelse@example.com"; $subject = "HTML email"; $message = " <h...
-
document.onkeydown = myKeyDownHandler; function myKeyDownHandler(event){ alert(event.keyCode) }
-
To Resolve above the issue use below this code $(function() { $('#calendar').fullCalendar('render'); });