Mysql
 sql >> Database >  >> RDS >> Mysql

jQuery AJAX ottieni dati MySQL restituisce l'intero index.html

Prima identificazione, hai menzionato il tipo di dati come "json", ma la tua risposta ajax non è json. Quindi prova così,

<?php

//  Make DB connection variable($conn) available here
//variable from jQuery
$value = filter_var($_REQUEST["ajaxid"], FILTER_SANITIZE_STRING);
$value = mysqli_real_escape_string($conn, $value);

//variable passed to SQL statement
/*$sql = $conn->prepare("SELECT FROM table WHERE screeningId = ?");
$sql->bind_param("s",$value);*/
$sql = "SELECT * FROM table WHERE screeningId = '$value'";
$result = mysqli_query($db, $sql);

//Get data
$result = mysqli_query($db, $sql);
$temp = array();
while ($row = mysqli_fetch_array($result)){
    //output data
    array_push($temp,$row['url']);
}
echo json_encode($temp);
?>

A scopo di debug, prova a eseguire direttamente get.php nel browser con la stringa di query. Es. http://...../../get .php?ajaxid=valore_campione .