我从CSV文件中检索数据并使用PHP将其存储在表中。在这个表中,我在td中使用文本框,我可以在其中编辑表数据。 现在我想将这些编辑过的数据存储在CSV文件中,但我无法将此表中编辑过的数据存储到CSV文件中。
这是我的代码:
<html>
<head>
</head>
<body>
<div>
<br>
<h1 style="text-align: center">* * * PROJECTS * * *</h1>
<br>
<input type = "hidden" id = "hide" name = "hide" value = "">
<input type = "button" name = "submit" onclick = "document.write('<?php echoAlert() ?>');" Value = "SAVE">
<br>
</div>
<?php
function echoAlert()
{
//我在这里写什么来将数据存储在CSV文件中?
}
?>
<?php
$handle = fopen("data.csv", "w"); // this is my .csv file.
$hide = $_REQUEST['hide']; // here I will retrieve the data from data.csv file
fwrite($handle,$hide); // Here I will write the data from file to table
$file = file('data.csv');
$lines = count($file);
这是我的表,我写这个文件。
echo'<table id = "projest" border = "1" cellpadding="2" cellspacing="0"
style = "width: 60%; margin-left: auto; margin-right: auto; border-color: brown; background-color:gray;">';
for ($i=1; $i<$lines; $i++)
{
$part = explode(',', $file[$i]);
echo'<tr>
<td align= "center" width="5%">'.$part[0].'</td>
<td align= "center" width="25%"><input type="text" value='.$part[1].'></td>
<td align= "center" width="25%"><input type="text" value='.$part[2].'></td>
<td align= "center" width="25%"><input type="text" value='.$part[3].'></td>
</tr>';
}
echo'</table>';
?>
在这里我可以编辑数据....问题是我想将这些编辑过的数据存储在同一个csv文件中。但是无法存储它。
请给我一些代码,将这些表数据存储在CSV文件中。
</body>
</html>