
Search In
Hello Readers!
You might have heard these "echo" and "print" statement in PHP many times. So here we will understand now what is the exact difference of these two words.
Both echo and print are used to output a statement. Below are the some basic d
As explained on post how to archive a snapshot, Now to restore a snapshot from created archive, use the following sequence of commands:
lvcreate --size 1G --name mdb-new vg0
gzip -d -c snap_db-01.gz | dd of=/dev/vg0/mdb-new
mount /dev/vg0/mdb-new /s
Jquery Chaining:
Till now we know that Jquery statements are executed line by line i.e one line after the another, but there is a technique that allows executing multiple Jquery commands in a single line just one after the an
Hello Readers,
Till now we may develop our appication with single database . Is their any ways to integrate our application with multiple databases ? . Yes we have.
There are methods to use multiple databases for development and for production wit
"Asp.net formatting a date from JSON and working with it on clinet side"
While dealing with JSON I got an issue that dates in the JSON are serialized as plain strings.
The solution which I got for th
Stack:- The Below code can shown you how to implement stack using dynamic linklist in data structure using C. We can insert the node dynamically and the Linklist works on principal Last-In-First-Out(LIFO).
#include<stdio.h>
#include<conio.
As you all know that at compile time
1. All IBOutlet keywords are removed entirely.
2. All IBAction keywords are replaced by void because actions invoked by user interface controls are not expected to have a return value.
The question then arises, "
Queue using Dynamic LinkList:-The Below code can shown you how to implement Queue using dynamic linklist in data structure using C. We can insert the node dynamically and the Linklist works on principal First-In-First-Out(FIFO). The Element can show
If you would like to get address from latitude and longitude. You can use below function:
public function getAddressbylatlong($latitude, $longitude){
$latlng = $latitude. ','.$longitude;
$geocode = file_get_contents('http://maps.go
To Add Extra Fields in account module in openerp use below code
In OpenERP Add Extra fields in account module to create new module name is invoice_cartage
and add these 4 file.
1- __init__.py file ---
import invoice_crtage
2- __openerp__.py fi
