I have a filelist.txt file and I created a file called clear.php to clear the content of filelist.
I put a button in index.html to call clear.php to clear the file.
Can anyone help me out regarding what PHP code I should write in clear.php?
How to code a button to call clear.php and then return back to index.html showing the result that it has been cleared?
I don't exactly know where u want to show the result.
You can redirect by using the header() function to modify the Location header.
This would truncate the file:
In clear.php, redirect to the caller page by making use of
$_SERVER['HTTP_REFERER']
value.Use
'w'
and not,'a'
.Try fopen() http://www.php.net/manual/en/function.fopen.php
w as mode will truncate the file.