Here is a nice article on full page background image. http://css-tricks.com/perfect-full-page-background-image/
Image Cropping in PHP – Part 1
With PHP 5.5.0 two functions, imagecropauto and imagecrop, have been added for advanced image resizing. This article describes the imagecropauto function. The imagecropauto function is useful to remove borders or background/outer area of a photo. The mode parameter defines the border to be removed e.g. IMG_CROP_BLACK will remove black borders, IMG_CROP_WHITE will remove white borders… Continue reading Image Cropping in PHP – Part 1
Some Useful Regex
Mail-id verification: /^[A-Za-z0-9._%-]+@[A-Za-z0-9.-]+\.[A-Za-z]{2,4}$/ Though both can be used in PHP and JS but there is another method to verify an email-id in PHP, by using the below code if(!filter_var($email, FILTER_VALIDATE_EMAIL)) FILTER_VALIDATE_EMAIL is a predefined filter in PHP. Name Verification: /^[A-Za-z .’-]+$/ Phone Verification: /^[0-9 -]+$/ Removing all spaces: $pattern = ‘/\s+/’; $replace = “”; $string… Continue reading Some Useful Regex
Secure Upload Folders
There are two ways to prevent execution of any (malicious) scripts uploaded to by users. Method one – like described in this post. Method two – add the below code to .htaccess file of the directory that needs to be protected. RemoveHandler .cgi .php .php3 .php4 .php5 .phtml .pl .py .pyc .pyo .sh .html .shtml… Continue reading Secure Upload Folders
Throw scripts as text instead of executing it
To throw PHP or other scripts as text instead of executing it, add the below code to .htacess file. AddType text/plain .cgi .php .php3 .php4 .php5 .phtml .pl .py .pyc .pyo .sh .html .shtml .jsp This method can be used to execute .html files as .php (or for executing any other type of file as… Continue reading Throw scripts as text instead of executing it