Mercurial > hg > webaudioevaluationtool
view save.php @ 1508:302af21c742c
Save PHP script fix; analysis webpage WIP
author | Brecht De Man <b.deman@qmul.ac.uk> |
---|---|
date | Fri, 13 Nov 2015 17:59:39 +0000 |
parents | 82f43919f385 |
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); ?>