Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64
Your IP : 3.12.123.217
<?php
function getDropDownList($aobj_context)
{
$aobj_context->mobj_db->SetFetchMode(ADODB_FETCH_ASSOC);
$query = "SELECT FSERVCODE AS int_code,FSERVNAME AS val FROM servtype
where ifnull(FDELETED,'') <> 'T' order by FORDER asc ";
// $query ="select * from student";
$result = $aobj_context->pobj_db->GetAll($query);
echo $aobj_context->mobj_output->ToJSONEnvelope($result,0,"success");
}
?>
|