| changeset 2 | 65157edaee3e |
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/web/tagging/savetag.php Wed Aug 12 17:34:15 2009 +0200 @@ -0,0 +1,13 @@ +<?php +$in=$_POST['timein']; +$out=$_POST['timeout']; +$tag=$_POST['usertag']; +$user=$_POST['username']; + +$line = array($in,$out,$tag,$user); +$fp = fopen("tags.csv", "a"); +fputcsv($fp,$line); +fclose($fp); + +header("Location: index.html"); +?> \ No newline at end of file