13 lines
217 B
PHP
Executable File
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'];
|
|
|
|
}
|
|
|
|
?>
|