web/tagging/savetag.php
author ymh <ymh.work@gmail.com>
Sat, 01 May 2010 03:20:13 +0200
changeset 112 e367a313ba1b
parent 2 65157edaee3e
permissions -rw-r--r--
improve sony engine navigation

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