array(10) {
"name" => "samn" (10)
"email" => "[email protected]" (20)
"title" => "hello world" (8)
"postcode" => "55555" (5)
"telephone" => "123123123" (9)
"category_id" => FALSE
}
how to foreach selected data? i mean something like this
foreach($data as $row)
{
echo $row->email;
echo $row->title;
}