Viewing file: clseducation.php (2.94 KB) -rwxr-xr-x Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
//--Class base_Education--------------------------
//--PK of base_Education ::
// 1. educationId
class Education extends clsDB{
var $result;
var $educationId;
var $educationName;
var $pbriId;
function Education(&$c){
$this->c=$c->c;
$this->DB=$c->db;
}
function AddNew(){
$this->status = 1;
}
function Edit(){
$this->status = 2;
}
function Save(){
if ($this->status==1){
$sql = "insert into Education values('$this->educationId', '$this->educationName', '$this->pbriId')";
}else {
$sql = "update Education set educationName='$this->educationName', pbriId='$this->pbriId' where educationId='$this->educationId'";
}
return $this->Dml($sql);
}
function Delete(){
return $this->Dml("delete from Education where educationId='$this->educationId'");
}
function GetNextCode(){
$this->SetQuery("select max(educationId) as num from Education");
if ($result=$this->GetResult()) {
return $result['num']+1;
}
}
function RSEducation(){
$this->SetQuery("select * from Education order by educationId");
}
function GetRecord(){
if ($this->result = $this->GetResult()) {
$this->educationId = $this->result['educationId'];
$this->educationName = $this->result['educationName'];
$this->pbriId = $this->result['pbriId'];
return 1;
}else {
return 0;
}
}
function SearchByKey($xKey){
if ($this->SetQuery("select * from Education where educationId= '$xKey'")){
return 1;
}else { echo "else";
return 0;
}
}
function NumRow(){
return $this->GetRowSelected();
}
//****************** You can add new functions below **********************//
function selectHTML($name, $ID=""){
$s="<select name=\"$name\">\n";
$s.="<option value=\"0\">-------เลือกหน่วยงาน-------\n";
$this->RSEducation();
while($this->GetRecord()){
$s.="<option value=\"$this->educationId\" ";
$s.=($this->educationId==$ID) ? "Selected" : "" ;
$s.=">$this->educationName\n";
}
return $s.="</select>\n";
}
function RSEducationName($xKey){
$this->SetQuery("select * from Education where educationName like '%$xKey%'order by educationName ");
}
function RSEducationNameId($xKey){
$this->SetQuery("select * from Education where educationName like '%$xKey%'order by educationId ");
}
function GetEducationName($Id){
$this->SetQuery("select educationName as num from Education where educationId='$Id'");
if ($result=$this->GetResult()) {
return $result['num'];
}
}
function RSEducationNameLimit($xKey, $start, $pageSize){
$this->SetQuery("select * from Education where educationName like '%$xKey%'order by educationName limit $start, $pageSize");
}
function NextPage($pg){
if ($this->lastSql<>""){
$this->frRowNum=($pg-1)*$GLOBALS["rowPerPage"];
$sql = $this->lastSql." limit $this->frRowNum,".$GLOBALS["rowPerPage"];
$this->SetQueryPage($sql);
}
}
function NumPage() {
return ceil($this->numRows/$GLOBALS["rowPerPage"]);
}
} //--End class base_Education--
?>
|