web/tagging/savetag.php
author ymh <ymh.work@gmail.com>
Fri, 30 Apr 2010 17:31:10 +0200
changeset 111 a9dd18698c15
parent 2 65157edaee3e
permissions -rw-r--r--
various corrections on screens. use predefined partials

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