web/tagging/savetag.php
author ymh <ymh.work@gmail.com>
Mon, 05 Oct 2009 16:58:06 +0200
changeset 10 d17aa71a58e0
parent 2 65157edaee3e
permissions -rw-r--r--
finish project configuration

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