web/tagging/savetag.php
author IRI
Wed, 24 Mar 2010 06:55:16 +0100
changeset 16 1cff4b07c3aa
parent 2 65157edaee3e
permissions -rw-r--r--
add sony engine

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