CSS Mouseover Zoom Effect

Mouseover Zoom Effect Use this CSS <style>.image{ -webkit-transition: 0.4s ease; transition: 0.4s ease; -moz-transform:0.4s ease;} .image:hover{ opacity: 0.8; transform: scale(1.05); -webkit-transform: scale(1.08); -moz-transform: scale(1.08);}</style>

Read More

HTML Page Title Marquee

<!– Add the event loader to the body tag as below –><title> Marquee Use in HTML Page Title</title> <body onLoad=”scrlsts()”> <h1>TITLE MARQUEE</h1> <h2> Marquee Use […]

Read More

Remove  Characters in HTML

Thread: PHP – includes ( characters) Try putting this after your <head> tag: Code:                <meta http-equiv=”Content-Type” content=”text/html; charset=UTF-8″/>

Read More

CodeIgniter Remove index.php By .htaccess

Steps To Remove index.php using .htaccess Step:-1  Open the file config.php located in application/config path.  Find and Replace the below code in config.php  file. // Find the below code$config[‘index_page’] = “index.php”// Remove […]

Read More

Family Tree In PHP

Create Family Tree In PHP 1st Step : Create these belove file and database   - CSS : style.css, ddsmoothmenu.css, ddsmoothmenu-v.css   - JS : ddsmoothmenu.js   - […]

Read More

Resize Image

//image_resize.php <?phperror_reporting(0); $message = “”;  define (“MAX_SIZE”,”100000″); function getExtension($str) {         $i = strrpos($str,”.”);         if (!$i) { return “”; }    […]

Read More