<?php
$arnaud_red=$_GET['arnaud_red'];
$arnaud_white=$_GET['arnaud_white'];
$arnaud6_red=$_GET['arnaud6_red'];
$arnaud6_white=$_GET['arnaud6_white'];
$oooka_red=$_GET['oooka_red'];
$oooka_white=$_GET['oooka_white'];
$philippe=$_GET['philippe'];
$christophe=$_GET['christophe'];
$letemps=$_GET['letemps'];
$fp=fopen("data/data.csv","w");
fputcsv($fp,array($arnaud_red,$arnaud_white,$arnaud6_red,$arnaud6_white,$oooka_red,
$oooka_white,$philippe,$christophe,$letemps),",");
header("Location: manager.php");
?>
上記を実行すると、以下のファイルが生成される
「data/data.csv」
0,1,1,0,1,0,1,0,0
コメントする