diff save.php @ 607:328f24798462 multiple-tests-concatenation

working, hacked together.
author Giulio Moro <giuliomoro@yahoo.it>
date Fri, 11 Mar 2016 16:49:47 +0000
parents 6833d8c2b52e
children 0256f3748b27
line wrap: on
line diff
--- a/save.php	Sun Mar 06 20:55:00 2016 +0000
+++ b/save.php	Fri Mar 11 16:49:47 2016 +0000
@@ -1,17 +1,18 @@
 <?php
 	error_reporting(0);
-    try{
-        date_default_timezone_get();
-    }
-    catch(Exception $e){
-        date_default_timezone_set('UTC'); // Sets to UTC if not specified anywhere in .ini
-    }
+	try{
+	    date_default_timezone_get();
+	}
+	catch(Exception $e){
+	    date_default_timezone_set('UTC'); // Sets to UTC if not specified anywhere in .ini
+	}
+	$saveFilenamePrefix = isset($_GET['saveFilenamePrefix']) ? $_GET['saveFilenamePrefix'].'-' : '';
 	header('Access-Control-Allow-Origin: *');
 	header("Content-type: text/xml");
 	$postText = file_get_contents('php://input');
 	$sha1_hash = sha1($postText);
 	$datetime = date('ymdHis');
-	$xmlfile = "save".$datetime."-".$sha1_hash.".xml";
+	$xmlfile = $saveFilenamePrefix."save".$datetime."-".$sha1_hash.".xml";
 	$fileHandle = fopen("saves/".$xmlfile, 'w');
 	if ($fileHandle == FALSE)
 	{