I want to make a file when the link is clicked. Can I do this using PHP?
<a href="C:./Program Files">Click Here</a>
I want to make a file when the link is clicked. Can I do this using PHP?
<a href="C:./Program Files">Click Here</a>
Use a form to do this and when it is submitted direct it to the php script that will create the file.
<form method="post" action="/make_file.php">
<input type="submit" Value="Click here">
</form>