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>
Change and Update WordPress URLS in Database When Site is Moved to new Host
UPDATE wp_options SET option_value = replace(option_value, ‘http://www.oldurl‘, ‘http://www.newurl‘) WHERE option_name = ‘home’ OR option_name = ‘siteurl’; UPDATE wp_posts SET guid = replace(guid, ‘http://www.oldurl’,’http://www.newurl’); UPDATE wp_posts […]
How to get href attribute value using PHP?
<?php $str = ‘<a href=”http://phpkishan.blogspot.in/”>PHP Kishan Kachhadiya</a>’;$s = explode(‘href=”‘,$str);$t = explode(‘”>’,$s[1]);print $t[0]; ?>
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 […]
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″/>
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 […]
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 - […]
Why Customised permalinks not working in localserver (WAMP) ?
1st Way : For enabling pretty urls / permalinks, you have to enable Apache mod_rewrite. 1. Start WAMP Server. Click on the WAMP Server icon […]
Resize Image
//image_resize.php <?phperror_reporting(0); $message = “”; define (“MAX_SIZE”,”100000″); function getExtension($str) { $i = strrpos($str,”.”); if (!$i) { return “”; } […]
How to create Stored Procedures for Insert,Update,Delete,Login in PHP?
<?phpSTEP – 1 #### Create Insert Data Store Procedure In PHP ##### First Create Table# Table structure for table `users`CREATE TABLE IF NOT EXISTS `users` […]