
Search In
If you want to assign task in project management follow the below mentioned steps: -
Step-1 Install Project Management module.
Step-2 Go to Project Menu and click it.
Step-3 Go to Project-> Tasks->Create->Fill in the following text ,bel
If you want to make Cashiers in Point Of Sale in OpenERP(Odoo) follow the below mentioned steps:-
Step-1 Go to Point Of sale module and Click it.
Step-2 Go to Cashiers ->Cashiers
Step-3 Go to Create Button and click it.
Step-4 Click on
Sanitize data means "Remove any illegal character from the data".
Best methods for sanitizing in php are given below.
Method 1 - Sanitize user-input when we are using Mysql Query.
For this case you have to use real_escape_string of mysqli.
For
Merge sort is a sorting algorithm that uses "Divide and Conquer" method to sort the array.It divides the array into two halves and then recursively sort the two sub-array and then merge the two sorted sub-arrays into sequence.
Time complexity of Mer
A union is a special data type available in C that allows to store different data types in the same memory location just like structures in C.
Union uses a single shared memory location which is equal to the size of its largest data member. It provi
Friend Function
These are special functions which can access the private members of a class.
Private and protected data of class can be accessed from a friend function.
Declaration of Friend Function
class className
{
...... .... ......
For Loop: allow us to efficiently write a loop that needs to be executed specific number of times.
Syntax:
for(init statement; test expression; increment)
{
code(s) to be executed;
}
The init statement allow us to
initialize any loop co
Linear search is simple search algorithm in which a sequential searching is done over all the items in a list. Every items are checked and if any match is found then that item is returned otherwise search will be continuued till the end of the dat
File handling in php allow us to make operation to write in a file .So we can write a new file or we can append text to an already existing file.For this we have fwrite() function in PHP.
Syntax is : -
fwrite(file,string,length);
parameters ar
Hi friends,
So many times developer face an issue of not able to connect to their mongo db using a GUI tool, If the mongo is installed on a remote server
There is a solution of connecting to remotely installed mongodb via SSH
First open your termina
