How-to articles, tricks, and solutions about HTML
Clearing content of text file using php
To clear the contents of a text file using PHP, you can use the file_put_contents() function.
Confirm button before running deleting routine from website
Yes, you can add a confirm button before running a delete routine on a website using PHP.
Converting <br /> into a new line for use in a text area
In PHP, you can use the nl2br() function to convert line breaks (\n or \r\n) to <br /> tags.