web/tagging/savetag.php
author ymh <ymh.work@gmail.com>
Wed, 14 Apr 2010 18:21:01 +0200
changeset 53 86c5f68fbaa8
parent 2 65157edaee3e
permissions -rw-r--r--
Merge with 14808949812acb6457d5a78df8555ead4e355e04

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