我有这个jDialog框,它以表格格式读取/包含文本文件数据。 我想删除整个行,删除后会影响文本文件。 我不知道如何做到这一点,请帮忙。 我的代码:
<div id="dialog-5" style="border-style: solid; border-width:1px; border-color:silver;border-radius:4px;width:42%;background-color:lightyellow;">
<center> <!-- read code here-->
<?php
echo '<table border="1" cellspacing="0">';
?><tr><td><b>Delete</td><td><b>Description</td><td><b>Author</td><td><b>Date</td><td><b>Query</td></tr>
<?php
$file = fopen("QDAC.txt", "r") or die("Unable to open file!");
while (!feof($file)){
$data = (fgets($file));
$arr = (explode("~",$data));
// print_r($arr);
?><tr onclick="SomeFunction('<?php echo $arr[0]?>')"><td><input type="button" value="Del" style="width:49px;background-color: tomato;border-radius:4px;" id="" name="" onclick="delTxt();"/></td><?php
foreach($arr as $k)
{
?><td><?php echo $k; ?></td><?php
}
?></tr><?php
//echo "<tr onclick='abc()'><td id='one'>" . str_replace('~','</td><td>',$data) . '</td></tr>';
}
echo '</table>';
fclose($file);
?>
</center>
</div>