BlueStacks is the first production software that allows you to use your favorite mobile apps on a Windows PC. You can download apps like Angry Birds Space, Temple Run, Evernote or Documents to Go directly into BlueStacks, or sync the apps from your phone using the BlueStacks Cloud Connect Android app. BlueStacks App Player BlueStacks App Player for PC is ... Read More »
How to compress a Folder containing Sub-Folders and Files with PHP
Sometimes we need to compress entire folder including sub folders and files.To compress entire folder using ZipArchive() class you need to scan all folders and files.After assigning all files and folder in any variable you can easily add them to zip archive one by one.So here is the entire process to compress a folder containing sub-folders and files with PHP. 1.Choose path ... Read More »
How to identify a Fake Facebook Profile Picture
Have you received a friend request or friend suggestion from a really hot guy/girl? Would you like to know her/his profile picture is fake or not ? Then read this post carefully.This post will help about how to identify a fake facebook profile picture. Fake facebook profiles are generally created for spamming or fun purpose.Facebook is currently very strict about ... Read More »
Building 3D pie chart with PHP using GD library
This is tutorial about building 3D pie chart with PHP using GD library.Although in my post of how to build a line chart with php I have recommended to avoid use of GD library for line chart, yet in this post I am recommending to use GD Library .Building pie chart is easy with GD library.If you are using Google Analytics ,then ... Read More »
Force a File to Download Instead of Showing Up in the Browser
Usually when a user goes to a file URL (for example: a download link), the file will show in the browser if the browser have a method to display that type of file.For example if you open an image link in your browser it will always display.Few extensions like .ZIP ,.EXE will be always downloaded because your browser doesn’t know ... Read More »
How to build a meta search engine with PHP
A meta search engine is a search tool that sends user requests to several other search engines and/or databases and aggregates the results into a single list or displays them according to their source.Currently there are a lot of meta search engine on internet.For example deeperweb.com is a meta search engine which gives the normal search results of google combined with results of “Answers Search” ,”Metrics Search” ... Read More »
Build your own Forgot Password PHP Script
This tutorial is about building a forgot password system(Password Resetting System) with PHP when password is encrypted with MD5() ,SHA1() or any other encryption algorithm . When you are storing the passwords of users in plain text then you can easily send their password to their email id.But in case of encrypted password it is not possible to send the ... Read More »
How to build a line chart with php
This tutorial about building a line chart with PHP without using GD library.Generally GD library is used for building a chart with PHP ,but a disadvantage of these types of chart is they are images .It becomes very hard to deals with images using HTML,CSS and JavaScript.For example you want to add a mouse over event on any bar then you ... Read More »
How to add watermark to an image using PHP
This is tutorial about how to add watermark to an image using PHP.Watermarks are use full to display copyright information or name of your website on any image.In this process you need two images first is the watermark image and second is image on which watermark will display.Follow these steps to add watermark to an image using PHP. 1.Choose image paths,output format ... Read More »
How to get database backup in your mailbox daily automatically
Few web host do not offer a daily backup of MySQL database while few offer extra charge for automatic backup.This PHP script will help you to get database backup in your mailbox daily automatically. This script performs three tasks.First it creates backup of MySQL database and save it server in .sql format.In second step it compress the .sql file and convert ... Read More »