芝麻web文件管理V1.00
编辑当前文件:/home2/sdektunc/www/apis/apilicences/index.php
prepare("SELECT * FROM licencias WHERE mac = ?"); $stmt->bind_param("i", $mac); // Ejecutar la consulta $stmt->execute(); // Obtener los resultados $result = $stmt->get_result(); if ($result->num_rows > 0) { // Mostrar los resultados while($row = $result->fetch_assoc()) { //echo json_encode("index:0, mensaje:0 , mac:". $row["mac"].", licencia: 0" ); //echo "{'index':0, 'mensaje':'0' , 'mac':'". $row["mac"]."', 'licencia': 0}"; header('Content-Type: application/json'); $data = array( array( "index" => 1,"licencia" => 1,"mac" => $row["mac"], "mensaje" => "John Doe" ) , array( "index" => 1,"licencia" => 1,"mac" => $row["mac"], "mensaje" => "John Doe" )); //$data = array( "index" => 1,"licencia" => 1,"mac" => $row["mac"], "mensaje" => "John Doe" ); echo json_encode($data); break; } } else { echo "0 resultados"; } // Cerrar la declaración $stmt->close(); } else { echo "No se proporcionó un ID en la URL."; } mysqli_close($conn); ?>