Royalty Free Images From Depositphotos

The advancement of the Internet has brought things so close that they are just a click away. In olden days, when people needed photographs for their publications, they used to hire a photographer who did a photo shoot for them. Then a handful of images were selected from the hundreds the photographer had snapped.

Username live check using Ajax PHP

Live username checker for registration has become useful part of registration system. It allows visitor to check for availability of username before they can register on one’s site. This script however can also be used for other purpose, such as checking city name, baby name or other miscellaneous things. Today let’s learn how we can create this nifty little script that checks available username for registration using jQuery Ajax and PHP.

Capture Array Values from Dynamic input Fields using PHP

Well in my previous post, you were able to add multiple dynamic fields using jQuery. In this tutorial, we will collect values from those dynamically generated input fields, which can be displayed on user browser or store in MySql database.

Installing ImageMagick on Windows

If you are on Windows, manual installation of ImageMagick on local server is bit painful, as there are numerous versions of ImageMagick, and you might encounter problems with newer versions, such as “magic_wand.dll missing”. If you are on Windows using XAMPP or WampServer, here’s few steps you can follow :Grab a binary file from imagemagick.org (I used ImageMagick-6.7.7-5-Q16-windows-dll.exe). On installation dialog, be sure to check “Add application directory to your system path”. After installation, download php_imagick.dll from peewit.fr. Make sure to pickup one that goes with your PHP version mumber.Place php_imagick.dll within PHP/EXT folder, which is located inside XAMPP installation folder. And then open PHP.INI file, find extension section, and enable the extension by removing (;) semi-colon or by typing exactly same as highlighted text below.If you want to install ImageMagick on linux platform such as Ubuntu this article might help.