web/tagging/savetag.php
author Gautier Thibault <gthibault@universcine.com>
Wed, 14 Apr 2010 20:53:47 +0200
changeset 57 c05892376a6c
parent 2 65157edaee3e
permissions -rw-r--r--
path to videos

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