mirror of
https://github.com/Doodle3D/doodle3d-connect.git
synced 2024-11-04 14:43:24 +01:00
18 lines
434 B
PHP
18 lines
434 B
PHP
<?php
|
|
|
|
require 'credentials.php';
|
|
|
|
$database = "doodle3d_connect";
|
|
$dsn = "mysql:host=localhost;dbname=$database";
|
|
$table = "signins";
|
|
|
|
try {
|
|
$db = new PDO($dsn, $username, $password);
|
|
$db->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
|
|
} catch (PDOException $e) {
|
|
$response = array( "status" => "error",
|
|
"msg" => $e->getMessage()." (".$e->getCode().")");
|
|
exit(json_encode($response)."\r\n");
|
|
}
|
|
?>
|