Advertise Here

        Thursday, 5 November 2015

        Wordpress Insert Record Into Table And Get Last Insert Id

        Wordpress Insert Record Into Table And Get Last Insert Id

        In Wordpress, Record insertion into table is quite simple.1. Create an Object of $wpdb;2. Set the data in an Array.3. Set the table name.4. Use insert function  to insert record.5. In insert function, first argument is table name and Second argument is array.See Example Below: global $wpdb; $tableName = $wpdb->prefix . "users"; $saveFieldArray=array( 'user_login' => 'mylogin',...

        Read More

        Saturday, 15 August 2015

        PHP - A Simple HTML Form

        PHP - A Simple HTML Form

        PHP - A Simple HTML Form The example below displays a simple HTML form with two input fields and a submit button: <html> <body> <form action="welcome.php" method="post"> Name: <input type="text" name="name"><br> E-mail: <input type="text" name="email"><br> <input type="submit"> </form> </body> </html>   When the...

        Read More

        Friday, 18 July 2014

        Sets in Discrete Structures

        Sets in Discrete Structures

        Definition : Sets A set is an unordered collection of objects. The objects in a set are called the elements, or members,of the set. A set is said to contain its elements. Two sets are equal if and only if they have...

        Read More

        Dynamic Memory Allocation and Dynamic Structures

        Dynamic Memory Allocation and Dynamic Structures

        Dynamic Memory Allocation and Dynamic Structures Dynamic allocation is a pretty unique feature to C (amongst high level languages). It enables us to create data types and structures of any size and length to suit our programs need within the program. We...

        Read More

        Thursday, 17 July 2014

        Waterfall Model

        Waterfall Model

        The Waterfall Model was first Process Model to be introduced. It is also referred to as a linear-sequential life cycle model. It is very simple to understand and use. In a waterfall model, each phase must be completed before the next phase...

        Read More

        Sunday, 13 July 2014

        2014 June UGC NET Answer Key Paper I

        2014 June UGC NET Answer Key Paper I

        2014 June UGC NET Previous Years Solved Paper I   This page will provide solved question papers of previous years or old question paper with answer keys of National Eligibility Test (NET) Examination of University Grants Commission (UGC) June 2014 for paper...

        Read More
        Page 1 of 212»