
Search In
The previous article shows a conceptual flow in ASP.Net MVC framework. There we saw that the controller is the central point of execution in MVC.And as you have gone through two theoretical articles on MVC flow, I think you've understood why control
This is an implementation of Circular Doubly Linked List in C Programming Language.
#include stdio.h
#include stdlib.h
struct node
{
int root, *next, *prev;
struct node n;
}
n* create_node(int);
voi
Authentication is one of the big part of any application. JSON web token is one of the safest medium of transferring information between two parties. The token is a long encryped string that has 3 parts-
The headers - It contains the h
Hello friends
While designing my first android app in Photoshop, I preferred researching on web for the guidelines and standards, before starting the task.
In doing so, I found some terms like dpi, dp and sp which were very confusing to me initiall
In this tutorial we will learn how to upload file with restriction on the type of file with the help of Codeigniter's upload class in the Codeigniter's library. With the help of this library we can set our preferences as per the uploading fil
The transition from OpenERP 7 to Odoo (OpenERP 8) visibly highlights power of the web. Odoo comes with more than 4,000 apps for sundry business needs and requisites.
There has been a worldwide acceptance for version 8.0 among its partners and users
Pre Conditions:
1. Install the Jmeter in system
2. Mobile & installed Jmeter system should be in same network
Follow the Steps to Connect the Android Mobile to Jmeter:
Step 1: Open the JMETER in system
Step 2: Add HTTP Proxy
This property describes what happens when content overflows an element's box.
In certain cases, a box may overflow and its content may goes partly or entirely outside the box.
CSS Syntax
overflow: visible|hidden|scroll|auto|initial|inherit;
Prop
These operators are used where we want to get records based on more than one condition .
And : From this operator we can get data if both the condition ( i.e first and second condition ) are true .
Or : From this operator we can get data if either th
Fetching data from the database takes a lot time process. Eventually when you need to combine multiple tables in order to fetch the data, reducing database calls becomes very meaningful.
Although in CakePhp's model, by default if the association be
