Mercurial > hg > webaudioevaluationtool
view save.php @ 318:85f05a29a01a WAC2016
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 | 08eee15e07d9 |
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); ?>