26 lines
406 B
PHP
26 lines
406 B
PHP
<?php
|
|
|
|
include_once ('include/config.php');
|
|
include_once ('include/functions.php');
|
|
include_once ('include/functions_db.php');
|
|
include_once ('include/auth/mysql.php');
|
|
|
|
$id = get_parameter('get_image');
|
|
|
|
$sql = 'SELECT datos FROM tagente_estado WHERE id_agente_modulo = '.$id;
|
|
|
|
$result = db_get_sql($sql);
|
|
|
|
$image = strpos($result, 'data:image');
|
|
|
|
if($image === false){
|
|
echo 0;
|
|
}
|
|
else{
|
|
echo 1;
|
|
}
|
|
|
|
?>
|
|
|
|
|