I am just curious on how I can display the contents of the array into a table. Thank You
$r_array = array();
switch($this->searchType){
case ‘Web’:
$obj = $this->request_data->d->results;
$ic = count($obj);
for($i=0;$i<$ic;$i++){
$r_array[$i] = array(‘Title’=>$obj[$i]->Title,‘Description’=>$obj[$i]->Description,‘Url’=>$obj[$i]->Url);
}
break;