Show sourcecode
The following files exists in this folder. Click to view.
api/
createroom.php
createtables.php
createuser.php
css/
dbconnection.php
game.php
index.php
login.php
logout.php
remove.php
rensa.php
results.php
waiting.php
remove.php
11 lines ASCII Windows (CRLF)
<?php
include('dbconnection.php');
/** @var PDO $dbconn */
try {
$dbconn->exec("DROP TABLE IF EXISTS fq_round_history");
echo "Table fq_round_history removed successfully!";
} catch(PDOException $e) {
echo "Error: " . $e->getMessage();
}
?>