6 lines
186 B
PHP
6 lines
186 B
PHP
|
<?php
|
||
|
die("Database not implemented until 0.4.");
|
||
|
//SELECT * FROM table WHERE key >= FLOOR(RAND()*MAX(id)) LIMIT 1
|
||
|
class Database implements ReadableDatabase, WritableDatabase {
|
||
|
|
||
|
}
|