I want to get the file name from a file upload input box. So I can add it to an e-mail.
I can get the information from any other text boxs and add it to an e-mail as in the code below
$message = "Name: ".$_POST["customername"]."\r\n";
any ideas
Use the $_FILES array to get the information about the file uploaded; see this manual page for more information on how to handle file uploads: [man]features.file-upload.post-method[/man].