Menu
Category

PHP

How to Use Webcam in PHP Using HTML5 and Save Image to Database

Home, Jquery, PHP By Jun 07, 2017 82 Comments

 Hello Friends recently i have added a Tutorial about How to use Webcam in PHP and Save Image to Database using Mysqli. Earlier tutorial using the Flash Plugin for showing the Webcam and clicking the Image. Today i am uploading another tutorial for How to use Webcam in PHP using HTML5, Jquery and Save Image to Database using Mysqli….

MySQL Export Database | Dump Database

PHP By May 04, 2017 No Comments

Today’s tutorial is about How to Backup Mysql Database Using PHP. Hello friends recently i was working over a website and after finishing the website i gave it to my client and he was working over it. One day suddenly there was some issue in the server and my client lost his all the data. He is not having any…

Webcam in PHP Using Jquery | Save Webcam Image in Database

Jquery, PHP By Apr 26, 2017 8 Comments

Hello friends after seeing many issues and great response at our previous post about How to Use Webcam in PHP. We have changed the code and now we have use the PHP Class for making it more simple to use.  In this article we will tell you how you can use this class in your application. You can now download…

Compare Two Images for Similarity Using PHP | PHP Image Comparison

PHP By Jan 16, 2017 1 Comment

How to Compare two images for similarity using PHP very well known question and many times we have to face this issue of PHP Image Comparison or Compare Image Similarity using PHP. Many people ask why we need to find the image similarity? before answering this question lets say you want to find your lost son and you have an…

Remove PHP Extension from URL Using Htaccess URL Rewrite Rule

Home, PHP By Jun 11, 2016 No Comments

Hello friends many times we need to remove the extensions from our URL for better SEO. So in this tutorial we will tell you how you can Remove PHP Extension from URL using  .htaccess file. Use the below code in your .htaccess file only RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME}.php -f RewriteRule ^(.*)$ $1.php [NC,L] In this above code…

Autocomplete textbox using jQuery, PHP and MySQL

Jquery, PHP By May 22, 2016 4 Comments

Autocomplete is a very useful project for user’s. It gives a list of things what you are searching according to your entered text. It saves time and offer’s a list of products and services with same names. It will give user’s more ideas based on their searching. I have a list of states in India in my SQL file you…

Add Watermark Image in PHP | Create Watermark in PHP

PHP By Feb 19, 2016 1 Comment

Add watermark image in PHP its our new tutorial. You can add your watermark image to your image. Now you dont need to open Photoshop and do this. Here is the very simple and short code for adding your image. addWaterMark(“Your path to image”); function addWaterMark($filename){ $logoImage = imagecreatefrompng(‘logo.png’); $logoWidth=imagesx($logoImage); $logoHeight=imagesy($logoImage); $im = imagecreatefromjpeg($filename); $sx = imagesx($im); $sy = imagesy($im);…