0
0
mirror of https://github.com/Doodle3D/doodle3d-connect.git synced 2024-07-02 11:11:23 +02:00
doodle3d-connect/api/create_table.php

25 lines
707 B
PHP
Raw Normal View History

2013-09-27 01:38:44 +02:00
<?php
require 'connect.php';
2013-09-30 17:34:27 +02:00
try {
// exported structure using phpMyAdmin
$createsql = $db->prepare("CREATE TABLE IF NOT EXISTS $table (" .
"`id` varchar(31) NOT NULL," .
2013-09-30 17:34:27 +02:00
"`remoteip` varchar(15) NOT NULL," .
"`localip` varchar(15) NOT NULL," .
"`wifiboxid` varchar(140) NOT NULL," .
"`hidden` tinyint(1) NOT NULL DEFAULT '0'," .
"`date` datetime NOT NULL," .
"PRIMARY KEY (`id`)" .
") ENGINE=InnoDB DEFAULT CHARSET=latin1;");
if($createsql->execute() == TRUE)
echo "$table created";
} catch (PDOException $e) {
$response = array( "status" => "error",
"msg" => $e->getMessage()." (".$e->getCode().")");
exit(json_encode($response)."\r\n");
}
2013-09-27 01:38:44 +02:00
?>