view save.php @ 1950:6eec4abc85e7

Minor edits to paper, updated installation instructions, added to be ignored files (e.g. LaTeX auxiliary files)
author Brecht De Man <b.deman@qmul.ac.uk>
date Wed, 30 Sep 2015 18:34:40 +0200
parents 4988c805ff9e
children de9a0a740b6e 7b0ce3a9ddc1
line wrap: on
line source
<?php
	head('Access-Control-Allow-Origin: *');
	$postText = file_get_contents('php://input');
	$datetime = date('ymdHis');
	$xmlfile = "save".$datetime.".xml";
	$fileHandle = fopen("saves/".$xmlfile, 'w');
	fwrite($fileHandle, $postText);
	fclose($fileHandle);
?>