web/tagging/savetag.php
author ymh <ymh.work@gmail.com>
Thu, 29 Apr 2010 11:57:20 +0200
changeset 107 ea5e48bf2a7a
parent 2 65157edaee3e
permissions -rw-r--r--
Intermediary commit

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