
Search In
This blog will help user learn how to avoid the duplicate entries in the database. Storing duplicate values in the table must be avoided while inserting data in the database table. As these duplicate entries can create many problem in the application
Rank()
This function assigns a row id to each row returned by the sql query fired. It provides distinct row id to distinct values, similar values have similar row id, the next row id is calculated as number of occurrence of previous r
In OpenERP first, create a custom module and then inherits the account.payment object in your own module like module name test.
Follow these steps given below
Step1- First create the __init__.py file in your test module and use this code given bel
Hello Readers,
This tutorial will guide you about how to create custom admin module in magento to print simple text Hello World in the backend. To accomplish this, follow the below steps:
Step 1: Create folder Evon/Helloworld inside app/code/local
An android app takes few seconds to startup, especially on its first boot. During this time a splash screen displays the startup progress or may display the branding information to identify and promote the application to the user.
RSS simply means Really Simple syndication, this is a xml document which is created by a website.
You need to parse this xml file and show the information:-
Here is the code that can help you :-
Step 1:-Declare the variable of which you want to ext
In magento sometimes we are requiered to apply our own discount on the cart total section.
To do so we can work upon the event sales_quote_collect_totals_after.
Lets see how we can do it:
1. Create a module with namespace as Custom and module
#include<stdio.h>
int maxDiff(int a[], int size)
{
int max_diff = a[1] - a[0];
int i, j;
for(i = 0; i < size; i++)
{
for(j = i+1; j < size; j++)
{
if(a[j] - a[i] > max_diff)
max_diff =
I have a situation in which I have to make an post http request to another server and get the http request data(If it exist) and then on the basis of data do further calculation. I have to also put the check that if there is any delay on the re
The Droppable function can be used in JqueryUI to enable dropable functionality on a DOM element. In the example below using drop-able function we can drag an element and drop it to another container.
Example code:
<!doctype html>
<html l
