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

Ricerca in tempo reale con PHP AJAX e XML

Il file che dovresti modificare è il file livesearch.php. Links.xml viene letto da livesearch.php come una fonte di dati, che nel tuo caso sarebbe il database. Il livesearch.php modificato sarebbe simile al seguente:

<?php
$host       = "localhost";
$user       = "root";
$pass       = "Passw0rd";
$database   = "project";

$db = new PDO("mysql:host={$host};dbname={$database}", $user, $pass);
$stmt = $db->prepare("SELECT * FROM patient WHERE fname LIKE :q OR lname LIKE :q");
$stmt->bindValue(':q', '%'.$_GET['q'].'%');
$stmt->execute();

while ( $row = $stmt->fetchObject() ) {
    echo '<a href="members2.php?view=' . $row->username . '" target="_blank">' . $row->fname . ' ' . $row->lname . '</a><br/>';
}
?>

Questo produrrà un output simile all'esempio livesearch.php fornito da w3schools.