Second highest salary in MYSQL?

13 years ago

MY SQLWe have one tables tblSalaryempID     empName   empSal1              A    …

Customize wordpress register form wp_register()

13 years ago

wp_register display a link which allows the user to navigate to the registration page if not logged in and registration…

slideToggle example in jquery

13 years ago

Simple Javacript and HTML sample code for Jquery Toggle. In this blog whatever we are putting all are working and…

How to select first div and change data of its.

13 years ago

Most of the time we need to select first div that time we are just thinking what need to do.…

Multiple image uplode with fixed size / thumb image code

13 years ago

Please understand code. May be for fresher it will difficult but all the things is not possible.Note :1 . Path…

Onmouse hover event change color of textbox in jquery

13 years ago

<html><head><meta http-equiv="Content-type" content="text/html; charset=utf-8" /><title>jQuery test</title><style>body {font-family:arial;}</style><head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js" type="text/javascript"></script> <script type="text/javascript"> //runs once page is loaded and ready to be manipulated    $(document).ready(function(){   …

difference between window.onload() and $(document).ready()

13 years ago

window.onload()the main difference is that document.ready() event gets called as soon as your DOM is loaded. It does not wait…

difference between remove() , hide(), empty.

13 years ago

empty It will remove all child element of selected divhide It will only hide from for.removeIt will remove selected element…

Uploading files with PHP

13 years ago

Upload an image or file to your server without using your FTP. Step 1: Open a web editor, then paste…

PHP send email with image attachment ?

13 years ago

How to send Email attachment using core php email function. Here we have created a new example where you can…

How to use constant variable?

13 years ago

Once you declared constant variable you just need to include that file and use variables<?phpDEFINE('PATH','http://www.google.com');echo PATH;?>output http://www.google.com