How to find checkbox checked using jquery?

13 years ago

In Jquery is a very easy solution to check checkbox selected or not. For that, you have to first know…

How to Upload Image using PHP?

13 years ago

Here you can learn Upload Image and at a same time information stored into database.<?php//define a maxim size for the…

PHP Interview questions and Answers

13 years ago

Today, this article will walk you through the most commonly asked PHP interview questions and answers for freshers and experienced…

how to hide and show content using jquery?

13 years ago

Very basic example how to toggle on one button click. Lets try it. You will enjoy it. <script src=”http://jqueryjs.googlecode.com/files/jquery-1.3.2.min.js” type=”text/javascript”></script>…

Store Procedure

13 years ago

Reduced network traffic and latency, boosting application performance. Stored procedure execution plans can be reused, staying cached in SQL Server’s…

How to Create Top Level Menu in wordpress?

13 years ago

Setting is a top-level menu. A top-level menu is common practice for any plugin that needs multiple option pages. To…

PHP use of array in form ?

13 years ago

Here is a simple example how to use array in html form element to store multiple value under single name.<html><head><title>Use…

Disable/enable a form element using jQuery?

13 years ago

There are two ways to disable/enable form elements.Set the 'disabled' attribute to true or false:// Disable #x$('#x').attr('disabled', true);// Enable #x$('#x').attr('disabled',…

How many storage engines in MySQL?

13 years ago

1.  MyISAM :  MyISAM is a default storage engine and that one using in web, data warehousing and other application…

Creating Index in Mysql

13 years ago

IndexCREATE INDEX work_id(Index_name) ON table_name field_Name

php store array in database ?

13 years ago

Array can be stored in database in the form of string.we can use serialize function to make storable representation of…

How to increase max upload file size limit using HTACCESS ?

13 years ago

By default,most server allow max 2MB file size to upload on server.but in some case you have to change to…