| Issue 18: | how to creare "$f = array(array ( 'category_ids' => array ( 'eq' => 35) ));" this type of array in flex | |
| 1 person starred this issue and may be notified of changes. | Back to list |
php array:
$f = array(array ( 'category_ids' => array ( 'eq' => 35) ));
i try to:
var arrParams:Array = new Array();
var arrCats:Array = new Array();
var arrAtts:Array = new Array();
arrAtts.push({eq:35});
arrCats.push({category_ids:arrAtts});
arrParams.push(arrCats);
Dec 22, 2009
Project Member
#1
marc.hug...@gmail.com
Status:
Invalid
|