22 lines
576 B
PHP
22 lines
576 B
PHP
<?php
|
|
|
|
$q = strtolower( $_GET["q"] );
|
|
if (!$q) return;
|
|
|
|
include("../connect.php");
|
|
|
|
// Replace "TABLE_NAME" below with the table you'd like to extract data from
|
|
$data = $db->query( "SELECT NAMA FROM m_pasien" )
|
|
or die( mysqli_error($connect) );
|
|
|
|
// Replace "COLUMN_ONE" below with the column you'd like to search through
|
|
// In between the if/then statement, you may present a string of text
|
|
// you'd like to appear in the textbox.
|
|
while( $row = mysqli_fetch_array( $data )){
|
|
if ( strpos( strtolower( $row['NAMA'] ), $q ) !== false ) {
|
|
echo $row['NAMA']."\n";
|
|
|
|
}
|
|
}
|
|
|
|
?>
|