
Search In


The easiest and possibly the best idea of importing data from another database to a new database is the CSV export. OpenErp gives you this feature in the versions 6.1 and 7.0.
Following is the example on how you can export customers to a csv file:
If we have to find duration or difference between two times of same date then
Let we have $dtime and $atime as two times of same date then
$dep=EXPLODE(':',$dtime);
$arr=EXPLODE(':',$atime);
$diff=ABS(MKTIME($dep[0],$dep[1],0,DATE('n'),DATE('j'),
Here, in this article when i click on one textbox the corresponding text in this textbox hides, and as soon as i click on another textbox the first textbox text appears.
The following steps are required to make the above task possible
Step1: Downlo
Delete category and Products By Ids in Magento by following the steps:
1 - Deleting Category:
send category id with Query String to controller such as
getUrl('catalog/category/deletcat').'?id='.$catId; ?>" title="Delete">
Delete category and Products By Ids in Magento by following the steps:
1 - Deleting Category:
send category id with Query String to controller such as
getUrl('catalog/category/deletcat').'?id='.$catId; ?>" title="Delete">
Sometime the email is sending on local machine but not on the server machine it gives the error "The SMTP server requires a secure connection or the client was not authenticated. The server response was: 5.5.1 Authentication Required"
To resolve th
NVL function helps you convert a null to an actual value.
Syntax:- NVL (expr1, expr2)
In the syntax:
expr1 is the source value or expression that may contain a null
expr2 is the target value for converting the null
Guidelines for NVL function:-
Feeds module provides functionality to import contents from feed urls.
We can setup feeds module according to:
https://drupal.org/documentation/modules/feeds
There are 2 ways to import feeds
1: attach to any content type
2: Use a standalone form
To get the coming Sunday from the current date or specified date, write the following code:
public static Date getNearestWeekend(Date date)
{
try {
Calendar c = Calendar.getInstance();
Calendar cal1 = Calendar.getInstance();
Hi all,
I had a requirement to move a project from core php to cakePHP framework. Migrating code was clear as I had to just modify syntax of code-base. But the problem came, when I had to implement login authentication with username and password usi
