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…

MYSQL dump file using command prompt ?

13 years ago

First of all ,go to mysqldump utility folder eq. C:wampbinphpphp5.3.0 using commad prompt and then type following code.in this example…

WHAT IS IN C ?

13 years ago

IDENTIFIERBefore you can do anything in any language, you must know how to name an identifier. An identifieris used for…

Class and Object

14 years ago

What’s a Class ?A class describes all the attributes of objects, as well as the methods that implement thebehavior of…

Differences between C and C++

14 years ago

There are several differences regarding C and C++ programming languages. The most common is that c++ is an advanced C.…

Prime Number Programe in C++

14 years ago

Prime Number  int n, i, prime;    // Assuming that the number is prime until proven otherwise prime = true; // Prompt user input cout…