-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
36 lines (34 loc) · 1.13 KB
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Jquery Drag and Drop</title>
<script src="assets/js/jquery.js"></script>
<script src="assets/js/jquery-ui.js"></script>
<script src="assets/js/app.js"></script>
<link rel="stylesheet" href="assets/css/app.css">
<link rel="stylesheet" href="assets/css/jquery-ui.css">
</head>
<body>
<div id="container">
<?php require_once('db.php'); ?>
<div class="list">
<h2>Drag and Drop With Database Refresh</h2>
<div id="response">
</div>
<ul id="taskList">
<?php
while($row = $tasks->fetch_assoc()):
$id = $row['id'];
$task = $row['task']; ?>
<li id="arrayorder_<?=$id;?>">
<?=$task;?>
<div class="clear"></div>
</li>
<?php endwhile; ?>
</ul>
</div>
</div>
</body>
</html>