Category Archives: PHP

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

By | June 7, 2017

 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… Read More »

Compare Two Images for Similarity Using PHP | PHP Image Comparison

By | January 16, 2017

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… Read More »

Remove PHP Extension from URL Using Htaccess URL Rewrite Rule

By | June 11, 2016

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… Read More »

Add Watermark Image in PHP | Create Watermark in PHP

By | February 19, 2016

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… Read More »