I have made a functioning mail form that sends me a mail with the details filled in. When I receive the mail it is very punctual and not nice looking. How can I make it display in the mail like it looks on the website when filled out?
Perhaps something a copy of the filled html form
I have made a form in html with php as action. I have set the method as to be POST. But when I fill out the form and send, the only thing I get is a message saying method was GET and nothing from my text fields. What can be the problem? HELP
I have this script wich forces a fil to download dialog:
<?php
$file = $_GET['file'];
header("Content-type: audio/mpeg");
header("Content-Disposition: attachment; filename=". $file);
readfile($file);
?>
But I want the download dialog to suggest a different name than the original file name. For...
I have a file, like "myfile.mp3", and I want people to download it by clicking an image. And I also want the download dialog to suggest a different file name, something like " this is - my file" How can that be accomplished??
I have a file, like "myfile.mp3", and I want people to download it by clicking an image. And I also want the download dialog to suggest a different file name, something like " this is - my file" How can that be accomplished??