web/tagging/savetag.php
author IRI
Wed, 24 Mar 2010 12:39:52 +0100
changeset 19 96ecedbe89de
parent 2 65157edaee3e
permissions -rw-r--r--
add deploy tasks for tomcat

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