web/tagging/savetag.php
author ymh <ymh.work@gmail.com>
Wed, 28 Apr 2010 17:20:48 +0200
changeset 93 8e4e2f2a2fdf
parent 2 65157edaee3e
permissions -rw-r--r--
Merge with 2fda205cc5dee96b60d73fe9d4eff7ff727e0321

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