
Search In
When we want to take(collect) information from user or those who are visiting site, for this purpose html forms are use.
for eg:- for user registration in any social site, we want to collect his personal information like his name,last name, email, a
// C++ program to detect and remove loop
using namespace std;
struct Node
{
int key;
struct Node *next;
};
Node *newNode(int key) //Function to create a node
{
Node *temp = new Node;
temp->key = key;
temp->next = NUL
// Program to detect and remove loop in linked list in java
class LinkedList //create a node in LinkedList
{
static Node head;
static class Node //create a node in LinkedList
{
int data;
Node next;
For performing transactions first you need to understand the use and things associated with it.
Transaction is a way to make operations done in such a manner so that only relevant sequence or logical things done on the client and se
We have a search edit text and a list in layout , activity_main.xml
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
In this example, we'll see how to configure Maven to run a project on tomcat withing eclipse. It is sometimes too hard to manage the Maven project with the commands. Each time we code the project in IDE like eclipse and go to the terminal/cmd to
Cloning of Object using jQuery
For cloning any any object using jQuery, jQuery provides clone() method which is performing a deep copy of the set of matched elements i.e clone method not only copies the matched elements but also all descendant eleme
The significance of the Finalize method in .NET
In .NET the clean activity for objects i.e when they are no longer required is done by Garbage Collector. But unmanaged resources (for example: Windows API created objects, File, Database connect
REFERENCE--- A reference variable is initialized first. A reference variable is defined to indicate a variable and that reference variable can't point to the another variable. References can not be NULL.
e.g of reference variable is:
&nbs
My objective for posting this blog is to tell how do we convert shell scripting code to php. In some cases we need to use php code instead of executing shell script. Therefore I am writing the blog which may help someone to understand how do we conve
