is there any sipmle php code for updating a .txt file online? (so that I can make changes online)
"updating" single rows in a textfile is not possible.
you have to read it in as a whole, then modify the variable that holds it, then overwrite the entire file.
read in -> file or fopen/fread/fclose write back -> fopen/fwrite/fclose