how to delete a single line in a txt file with php
问题 i was wondering if it is posible to delete a single line in a txt file with php. I am storing emailadresses in a flat txt file named databse-email.txt I use this code for it: <?php if ($_SERVER['REQUEST_METHOD'] == 'POST') { $email = $_POST['email-subscribe'] . ',' . "\n"; $store = file_put_contents('database-email.txt', $email, FILE_APPEND | LOCK_EX); if($store === false) { die('There was an error writing to this file'); } else { echo "$email successfully added!"; } } ?> Form: <form action="