web/tagging/savetag.php
author clebeaupin
Mon, 29 Mar 2010 12:26:25 +0200
changeset 29 e873acff02e0
parent 2 65157edaee3e
permissions -rw-r--r--
add event on models to index in solr

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