view save.php @ 344:c0bf5d39cb9c WAC2016

Hitting enter in any pop-up goes to the next window (or submits, or starts the test)
author Brecht De Man <b.deman@qmul.ac.uk>
date Wed, 18 Nov 2015 11:08:52 +0100
parents de9a0a740b6e
children e40eb1c67933
line wrap: on
line source
<?php
	header('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);
?>