For Get Special Deals every day and special offers, Dial *050# or send DEAL to 1204. Offers include 1.Recharge bonus 2.Extra minutes 3.Free reward points 4.Discounted Data packs 5.Free SMS every day
How To stop autoplay of Facebook Videos
Simple Steps to disable auto play of Facebook Videos 1. Click on the down arrow icon at the top-right of your Facebook homepage 2. Go to Facebook settings 3. Take Video tab 4. Select Auto-play Video Option and choose ‘off’ option Finished Video Tutorial of stop autoplay of Facebook Videos
Difference Between Resume,CV and Biodata
We are using some words in everyday life without knowing the actual meaning. Resume,CV,Biodata are some of common words. Generally consider all three have same meaning but they have their own meaning. For better understanding of difference Between Resume,CV and Biodata read the following definitions. RESUME Resume is a French word meaning “summary”. A resume…
Resetting forgotten phpmyadmin password
Simply change or reset your MySQL root password by doing the following: Run the following commands in Terminal Step 1 :Stop the MySQL server sudo service mysql stop Step 2 : Start mysqld sudo mysqld –skip-grant-tables $; Step 3:Login to MySQL as root mysql -u root mysql Step 4 :Change MYSECRET with your new root…
check ssl port in shared hosting is closed
Check ssl port in shared hosting is closed, use the php code to check if it is open. Here use gmail smtp for checking. $fp = fsockopen(“www.google.com”, 80, $errno, &$errstr, 10); // work fine if (!$fp) echo “www.google.com – $errstr ($errno)n”; else echo “www.google.com – okn”; $fp = fsockopen(“smtp.gmail.com”, 465, $errno, $errstr, 10); // NOT…