mirror of
https://github.com/php/presentations.git
synced 2026-04-25 00:08:15 +02:00
10 lines
303 B
PHP
10 lines
303 B
PHP
<?php
|
|
require "./cache.php"; // our cache code
|
|
|
|
// Simple guestbook script.
|
|
$db = new SqliteDatabase("gb.sqlite");
|
|
foreach ($db->query("SELECT * FROM guestbook", SQLITE_ASSOC) as $row) {
|
|
echo $r->user . ' wrote on ' . date("Ymd", $r->date) . ":<br />\n";
|
|
echo $r->message . "<hr /><hr />";
|
|
}
|
|
?>
|