web/tagging/savetag.php
author ymh <ymh.work@gmail.com>
Mon, 03 May 2010 17:53:28 +0200
changeset 116 4a55e2fafdd5
parent 2 65157edaee3e
permissions -rw-r--r--
Added tag V00.01 for changeset 79a65c633bef

<?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");
?>