How to Generate QR Code Using PHP And HTML
QR (Quick Response) code used to read your data in your smart devices for ease. If you have a visiting card and want to add name, email and mobile number in you mobile its hart to type if there is…
QR (Quick Response) code used to read your data in your smart devices for ease. If you have a visiting card and want to add name, email and mobile number in you mobile its hart to type if there is…
In this tutorial am going to explain how to get the unread mails from your gmail account using gmail feed atom in PHP. This method using the cURL to fetch the emails from Gmail server through feed atom. XML response…
n this article, you will learn how to retrieve data from a database without refreshing the webpage. Suppose we have student table that contains an name and username and an student_info table that contains whole student information. You may also…
Are you looking for ajax file/image upload without refreshing page using ajax, Jquery and php. I had implemented this ajax form submitting using jquery.form plugin. You may also like How to Load Data From Database Without Page Refresh using Ajax,…
In this tutorial, we are having jQuery event handlers which will be triggered based on the drag-drop events. On dropping image files, an AJAX request will be called for a PHP file for uploading dropped images. You may also like…
It is very simple getting the server file upload process every few second and increasing the bar color using jquery css property. Just take a look at this code. You may also like How to Animated progress bar using jquery,…
So the flow is quite simple, user registers to a site, and email is sent to their email address for verification. User then click a link in the email message which redirect him back to the site where it’s account…
In this tutorial we will show you how to get user’s complete location using users IP address in PHP with the help of GeoPlugin and freegeoip web service. Example 1 <?php $ip=’77.99.179.20′; $location = file_get_contents(”.$ip); print_r($location); ?> Output { “ip”:”77.99.179.20″,…
The PHP function, preg_grep, is used to search an array for specific patterns and then return a new array based on that filtering follow below code with string to array and array to search specifc word(character). You may also like…
This code snippet shows you how to check if a string contains a specific character in PHP, or if a string contains a match from an array of word options. You may also like How to search in an array…