Tag Archives: php

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 »

Create JSON API Using PHP and MYSQL

By | November 24, 2015

Now these day’s mobiles are getting more dearer than other gadget’s. APP’s are the important factor for making mobile your favorite gadget. Same as apps now these day’s everyone what their website to be mobile friendly and some of them create app also for their website. Now these days mobile app’s are more common for… Read More »