Files

19 lines
439 B
PHP
Raw Permalink Normal View History

2026-02-24 09:25:17 +08:00
<?php
include_once("../inc/class.php");
include_once("../inc/admin.smarty.php");
$db = new myConn;
$db->links();
$GG=$db->getpost($GG);
2026-02-24 21:53:24 +08:00
if(!empty($GG['id'])){
2026-02-24 09:25:17 +08:00
$arr = explode(",",$GG['id']);
$idd = implode(',',$arr);
$data = $db->fetch_all("select HeadHttp from IndividualDatum where UserID in (".$idd.")");
foreach($data as $k => $v){
if($v['HeadHttp']){
$t[] = $v['HeadHttp'];
}
}
echo implode(',',$t);
}
unset($GG,$ppxq);
?>