diff php/read/saveUserList.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
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/php/read/saveUserList.php	Thu Feb 16 22:29:02 2017 +0000
@@ -0,0 +1,33 @@
+<?PHP
+
+if( !empty($_POST) ){
+
+	include "../../../private/db.php"; 
+
+	//echo $_POST["xml"];
+	//echo print_r($_POST);
+	$xml = new SimpleXMLElement(stripslashes($_POST["xml"]));
+	
+	$userID = $xml->UserID;
+	//echo $userID;
+	
+	$listName = stripslashes($xml->List->SavedListName);
+	//echo $listName;
+	
+	for($i=0;$i<sizeof($xml->List->ListDetails->Book);$i++){	
+		$isbn = $xml->List->ListDetails->Book[$i]->ISBN;
+		$picURL = $xml->List->ListDetails->Book[$i]->PictureURL;
+		$title = stripslashes($xml->List->ListDetails->Book[$i]->BookTitle);
+	
+		//echo "$isbn,$picURL,$title-";
+		$add = "CALL b_insertSaveList($userID,\"$listName\",\"$isbn\",\"$picURL\",\"$title\")";  //"insert into usersave values(null,$userID,\"$listName\",'$isbn','$picURL',\"$title\",1)"; 
+		echo $add;
+		$run = mysqli_query($link, $add); //add the book to the list in usersave
+	}
+}
+else
+{
+	echo "Empty Post";
+}
+
+?>
\ No newline at end of file