Hey guys is there a way to delete a specific variable in a textfile? I have an textfile let's call it xyz.txt in which are the following contents:
sdasd
dasdasda
sadasd
Now im loading the content of the file with file_get_contents. Let the user make the decision which variable he wants to delete. Let's say he selected sdasd. What do i have to use when i now want to delete the line with sdasd from the textfile? Didn't found anything helpful here: PHP Manual filesystem
Here is how i load the contents of the txtfile:
$handle = @fopen("xyz.txt", "r");
echo ('<table class="table table-bordered table-striped">');
echo '<thead>';
echo'<tr>';
echo'<th>Auswahl</th>';
echo'<th>Admin</th>';
echo'</tr>';
echo'</thead>';
echo ('<tbody>');
echo("<tr>");
while (!feof($handle)) // Loop til end of file.
{
$buffer = fgets($handle, 4096);
// Read a line.
list($a,$b,$c)=explode(" ",$buffer);
//Separate string by the means of |
echo '<td><form name="Lager" method="submit" action="admins_verwalten.php"><input type="radio" name="Admin" value="'.$a.$b.$c.'"><br></td>';
echo('<td>'.$a.$b.$c."</td>");
echo("</tr>");
}
echo ('</tbody>');
echo ('</table>');
echo '<button type="submit" class="btn btn-primary"></i>Admin delete</button></label></form>';
str_replace\nsdasdand put it back? – loler Nov 15 '12 at 10:13file_get_contentshere, in code? – loler Nov 15 '12 at 10:20