Tuesday, August 30, 2011

Increase Mobile Phone Signal Strength Indoors

1. If you are having problems getting a phone signal indoors, move around with your phone to try to find an area in your home where reception is best. This will often be close to windows or doors because large, well insulated buildings can be unfriendly environments for phone reception. 2. Get a mobile phone signal booster. Vodafone have launched a product recently called Vodafone Sure Signal which...
Read more

Sunday, August 28, 2011

Best cell phone tricks--battery down ? lost your cell ? stop receiving call ? ? wanna lock it ? ?

1. Do not want to receive calls or make your number does not exist? Type **21*999999#, then press the green answering key. If someone is to call you, he / she will hear ‘the number you dialed does not exist’, isn’t it cool? To disable this feature, type ##21#, then press the answering key again, and everything will be normal. 2. Get your keys locked in your car and get a remote control at home? ...
Read more

How google adsense work ?

Many people asks, how actually Google Adsense works or pays its Publishers good and better revenues than most of other ad-networks, and what is the actual working of the system. Well, to this question i answer : Google Adsense works on following mechanism, where i would say Google (company) has two tools, 1. Google Adwords – For Advertisers 2. Google Adsense – For Publishers Now suppose, an...
Read more

Wednesday, August 24, 2011

HACK : Simple encryption-decryption algorithm in php

HACK : Simple encryption-decryption algorithm in php For those peoples who want to save their passwords encrypted. //function to encrypt the string function encode5t($str) { for($i=0; $i<5;$i++) { $str=strrev(base64_encode($str)); //apply base64 first and then reverse the string } return $str; } //function to decrypt the string function decode5t($str) { for($i=0; $i<5;$i++) ...
Read more

Thursday, August 18, 2011

PHP Mailer Form with File Attachment

Simple to implement in your web page. Allows one file to be attached to the email.For multifile aatchment code go to this link : Multifile Attachment Performs validation of: name, email, subject and message. Also validates certain file types and maximum size. No need for PHP knowledge. The script is well commented. Form is styled using CSS.This script is free software; you can redistribute it and/or...
Read more

Wednesday, August 17, 2011

Play with any website--redesign it--funny trick

Open any website and copy paste the above code by clearing address bar. 1)open any website like Facebook.com 2)copy and paste this java-script code in address bar 3)Drag AND DROP THE CONTENT note: if refreshed , every thing comes back to normal. javascript:document.body.contentEditable='true'; document.designMode='on'; void ...
Read more

We couldn't afford rent: Hrithik Roshan

This is why i respect him... just read it.. To understand why the star with the Greek God physique doesn't hit back, and lets people call him a pushover, read on You've spent more time meeting people face-to-face in the promos of " ZNMD" and for your dance show than you've probably done ever in your life. Yes, I had never hit the road earlier for promoting a movie this way, I haven't quite...
Read more

Monday, August 15, 2011

Send image as attachment or an other file with email in php

Send image as attachment or an other file with email in php This script is very useful if you thinking to send files as attachment to any email in php. !--php // array with filenames to be sent as attachment $files = array("file_1.ext","file_2.ext","file_3.ext",……); // email fields: to, from, subject, and so on $to = "mail@mail.com"; $from = "mail@mail.com"; $subject ="My subject"; $message = "My message"; $headers = "From: $from"; // boundary $semi_rand...
Read more