Update _test folder
This commit is contained in:
8
_test/ajax/ajax-sqlite-insert/data.php
Normal file
8
_test/ajax/ajax-sqlite-insert/data.php
Normal file
@@ -0,0 +1,8 @@
|
||||
<?php
|
||||
require'conn.php';
|
||||
|
||||
$query=$conn->query("SELECT * FROM `member`") or die("Failed to fetch row!");
|
||||
while($fetch=$query->fetchArray()){
|
||||
echo"<tr><td>".$fetch['firstname']."</td><td>".$fetch['lastname']."</td><td>".$fetch['address']."</td></tr>";
|
||||
}
|
||||
?>
|
||||
Reference in New Issue
Block a user