prestation/flexcode/getac.php
2025-12-05 10:42:46 +00:00

13 lines
217 B
PHP
Executable File

<?php
if (isset($_GET['vc']) && !empty($_GET['vc'])) {
include 'include/global.php';
include 'include/function.php';
$data = getDeviceAcSn($_GET['vc']);
echo $data[0]['ac'].$data[0]['sn'];
}
?>