web/tagging/savetag.php
author IRI <>
Fri, 09 Apr 2010 18:18:55 +0200
changeset 41 a63a8ff719ff
parent 2 65157edaee3e
permissions -rw-r--r--
start implementing reindex action

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