Mercurial > hg > ywww
comparison php/read/deleteSavedList.php @ 6:077b0a0a3e6d
remaining originals according to dependency walk
| author | Robert Boland <robert@markup.co.uk> |
|---|---|
| date | Thu, 16 Feb 2017 22:29:02 +0000 |
| parents | |
| children | 385ddd7c4b55 a67bf725e87b |
comparison
equal
deleted
inserted
replaced
| 5:55445b456ad0 | 6:077b0a0a3e6d |
|---|---|
| 1 <?PHP | |
| 2 | |
| 3 $user = $_GET['User']; | |
| 4 $list = $_GET['list']; | |
| 5 | |
| 6 include "../../../private/db.php"; | |
| 7 | |
| 8 $query = "CALL b_deleteSavedList($user, \"$list\")"; | |
| 9 echo $query; | |
| 10 $results = mysqli_query($link, $query); | |
| 11 | |
| 12 mysqli_close($link); | |
| 13 | |
| 14 ?> |
