How to convert this PHP into JavaScript [message #173146] |
Thu, 24 March 2011 14:23 |
Oltmans
Messages: 1 Registered: March 2011
Karma:
|
Junior Member |
|
|
Hi PHP gurus, I hope you're doing well.
I'm trying to convert a PHP script into JavaScript. I'm posting here
because I don't know much PHP and I hope someone among you can help.
Here is the PHP
array(
'abc' => '1 AND (2 OR
3)', // Define how to
use the following criteria
'def' => array('marketing_campaign_id', 'status',
'status'), // Filter by these three criteria
'ghi' => array('eq', 'eq',
'eq')
);
I need to convert above into JavaScript object which looks like
{
'abc' : '1 AND (2 OR 3)'
}
but I don't know how to convert
array('marketing_campaign_id', 'status', 'status')
into equivalent JavaScript. Can someone please let me know how to
convert above into JavaScript? I will really appreciate your help in
this regard. Thanks!
|
|
|