<?php
class kiemtra_class
{
function kiemtra_method(&$bean, $event, $arguments=null)
{
if ($event != 'before_save') return;
// Insert your custom logic between these comments
$query="select count(*) from md1_dangkykhachhang where name='$bean->name' and diachithuongtru='$bean->diachithuongtru' and dienthoaicodinh->'$bean->dienthoaicodinh'";
$results = $bean->db->query($query, true);
if ($bean->db->fetchByAssoc($results) == 0){
// Insert your custom logic between these comments
//show dialogbox
//cancel save in database
}
}
}
?>
Bookmarks