diff --git a/res/php/ajax_get_arg.php b/res/php/ajax_get_arg.php deleted file mode 100644 index 8d1aa5d..0000000 --- a/res/php/ajax_get_arg.php +++ /dev/null @@ -1,5 +0,0 @@ -Some arg:"; -echo "
"; -echo $_GET['arg']; -?> diff --git a/res/php/id_exists.php b/res/php/id_exists.php deleted file mode 100644 index 4c8a447..0000000 --- a/res/php/id_exists.php +++ /dev/null @@ -1,21 +0,0 @@ -error) { - die("Failed to connect to the database: " . $conn->error); -} -$sql = "SELECT * FROM Titama WHERE id=$id"; -$res = $conn->query($sql); -$course = $res->fetch_assoc(); -if(isset($course)){ - echo json_encode(true); -} else { - echo json_encode(false); -} -include './closedb.php'; -?>