Hi ,
for PHP connector, how do I init the $conn for render_array in following code.
Do I need configure the conn first ?
$data = array(
array(“id”=> “1”, “product” =>“Phone AB12”, “price”=>“460”),
array(“id”=> “2”, “product”=>“Tablet device”, “price”=>“830”)
);
$conn->render_array($data, “id”, “product,price”);
Thanks,
Willy Lin