"$customerid", 'sessionid'=>"$sessionid", 'user_name' => "$username", 'where' => "$where",'match' => "$match_condition"));
$result = $client->call('get_tickets_list', $params, $Server_Path, $Server_Path);
$val = @array_values($result);
$rowcount = count($result);
$list_fields = Array( 'TICKETID' => '7%',
'TITLE' => '28%',
'PRIORITY' => '10%',
'STATUS' => '10%',
'CATEGORY' => '15%',
'MODIFIED TIME' => '15%',
'CREATED TIME' => '15%'
);
//In Tickets/index.html we have opened the tr and td tags. So here we should start with div or table tags
if($rowcount >= 1 && $val)
{
$list .= '
';
$list .= '
'.$closedlist;
}
else
{
$list = '';
$list .= '| '.$mod_strings['LBL_NONE_SUBMITTED'].' |
';
}
//In Tickets/index.html we have opened the tr and td tags. So here we have to close that td and tr tags
$list .= "";
echo $list;
?>