Explorar o código

Initial commit

Foppe Hemminga %!s(int64=5) %!d(string=hai) anos
achega
a3c422629f
Modificáronse 3 ficheiros con 91 adicións e 0 borrados
  1. 4 0
      .gitignore
  2. 56 0
      index.php
  3. 31 0
      sqlite.php

+ 4 - 0
.gitignore

@@ -0,0 +1,4 @@
+# Created by .ignore support plugin (hsz.mobi)
+slork.sqlite
+.idea/
+

+ 56 - 0
index.php

@@ -0,0 +1,56 @@
+<?php
+
+$pdo = null;
+try {
+	$pdo = new PDO("sqlite:" . './slork.sqlite');
+} catch (PDOException $e) {
+	// handle the exception here
+}
+/**
+ * BUSINESS LOGIC
+ *
+ * 1) First we validate or create a maintainer.
+ * 2) The maintainer will be presented a page with
+ *    players. He can edit or remove a player.
+ * 3) The edit page allows the maintainer to add
+ *    or remove features from the player.
+ */
+if ( isset( $_REQUEST['m'] ) ) {
+    // There is a maintainer
+    echo "Empty statement";
+}
+?>
+
+<!doctype html>
+<html lang="en">
+  <head>
+    <!-- Required meta tags -->
+    <meta charset="utf-8">
+    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
+
+    <!-- Bootstrap CSS -->
+    <link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
+
+    <title>Hello, world!</title>
+  </head>
+  <body>
+  <div class="container">
+	  <div class="row">
+		  <div class="col-md">
+			  One of three columns
+		  </div>
+		  <div class="col-md">
+			  One of three columns
+		  </div>
+		  <div class="col-md">
+			  One of three columns
+		  </div>
+	  </div>
+  </div>
+
+    <!-- Optional JavaScript -->
+    <!-- jQuery first, then Popper.js, then Bootstrap JS -->
+    <script src="//code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
+    <script src="//cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
+    <script src="//maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
+  </body>

+ 31 - 0
sqlite.php

@@ -0,0 +1,31 @@
+<?php
+
+$pdo = null;
+try {
+	$pdo = new PDO("sqlite:" . './slork.sqlite');
+} catch (PDOException $e) {
+	// handle the exception here
+}
+if ( !$pdo ) {
+	exit( "Cannot connect to database" );
+}
+
+// Create maintainer database
+$pdo->exec("DROP TABLE IF EXISTS maintainer;");
+$query = <<<QUERY
+CREATE TABLE IF NOT EXISTS maintainer (
+		id INTEGER PRIMARY KEY, maintainer INTEGER, apt TEXT);
+QUERY;
+$stmt = $pdo->exec( $query );
+//$stmt->execute();
+
+// Create user/player database
+$pdo->exec("DROP TABLE IF EXISTS player;");
+$query = <<<QUERY
+CREATE TABLE IF NOT EXISTS player (
+		id INTEGER PRIMARY KEY, maintainer INTEGER,
+		player INTEGER, property TEXT, value TEXT,
+		FOREIGN KEY (maintainer) REFERENCES maintainer(maintainer));
+QUERY;
+$stmt = $pdo->exec( $query );
+//$stmt->execute();