Mercurial > hg > ywww
comparison php/read/addListToMyMap.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 $userID=$_GET['userID']; | |
4 $listName=urldecode($_GET['listName']); | |
5 //echo $userID; | |
6 //echo $listName; | |
7 | |
8 include "../../../private/db.php"; | |
9 $ynrList = "CALL b_setMap_ChangeListName($userID,\"$listName\", \"MyMap\")"; | |
10 echo $ynrList; | |
11 $results = mysqli_query($link, $ynrList) or exit( mysqli_error( $link )); | |
12 | |
13 | |
14 | |
15 ?> |