| Server IP : 103.48.194.25 / Your IP : 216.73.216.231 Web Server : Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.33 System : Linux VMHostDefault 3.10.0-1160.42.2.el7.x86_64 #1 SMP Tue Sep 7 14:49:57 UTC 2021 x86_64 User : sieuthimay ( 1016) PHP Version : 8.2.20 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/nhadatkhangdien.net-bk/public_html/admin/sources/ |
Upload File : |
<?php if(!defined('_source')) die("Error");
$act = (isset($_REQUEST['act'])) ? addslashes($_REQUEST['act']) : "";
switch($act){
case "man":
get_items();
$template = "tinlienhe/tin";
break;
case "delete":
delete_item();
break;
}
function fns_Rand_digit($min,$max,$num)
{
$result='';
for($i=0;$i<$num;$i++){
$result.=rand($min,$max);
}
return $result;
}
function get_items(){
global $d, $items, $paging;
$d->setTable('contact');
$d->setOrder('id');
$d->select('*');
$d->query();
$items = $d->result_array();
$curPage = isset($_GET['curPage']) ? $_GET['curPage'] : 1;
$url="index.php?com=tinlienhe&act=man";
$maxR=10;
$maxP=4;
$paging=paging($items, $url, $curPage, $maxR, $maxP);
$items=$paging['source'];
}
function delete_item(){
global $d;
if(isset($_GET['id'])){
$id = themdau($_GET['id']);
$d->reset();
$sql = "select * from #_contact where id='".$id."'";
$d->query($sql);
if($d->num_rows()>0){
while($row = $d->fetch_array()){
delete_file(_upload_tintuc.$row['photo']);
delete_file(_upload_tintuc.$row['thumb']);
}
$sql = "delete from #_contact where id='".$id."'";
$d->query($sql);
}
if($d->query($sql))
redirect("index.php?com=tinlienhe&act=man");
else
transfer("Xóa dữ liệu bị lỗi", "index.php?com=tinlienhe&act=man");
}elseif (isset($_GET['listid'])==true){
$listid = explode(",",$_GET['listid']);
for ($i=0 ; $i<count($listid) ; $i++){
$idTin=$listid[$i];
$id = themdau($idTin);
$d->reset();
$sql = "select * from #_contact where id='".$id."'";
$d->query($sql);
if($d->num_rows()>0){
while($row = $d->fetch_array()){
delete_file(_upload_tintuc.$row['photo']);
delete_file(_upload_tintuc.$row['thumb']);
}
$sql = "delete from #_contact where id='".$id."'";
$d->query($sql);
}
} redirect("index.php?com=tinlienhe&act=man");} else transfer("Không nhận được dữ liệu", "index.php?com=tinlienhe&act=man");
}
?>