Adrianaa03
10-05-2004, 01:40 AM
I'm having some trouble with a form on my website. What I've done is passed an image from one page to another using this script:
<script language="JavaScript" type="text/javascript">
<!--
if (location.search) {
var image_filename = location.search.substring(1)
document.write('<IMG SRC="' + image_filename + '" width="110"
height="80">')
}
//-->
</script>
This is working great and the image shows up in the form just where I want it. Problem is, I don't know how to get this image (not the actual image but at least the image filename) to get sent to me through email when the user hits the submit button. Everything else on the form gets sent to me except this image (the image will always be different depending on what image was clicked on the page before) I also want to send this image to a confirmation page. Can someone please help me out with this?
Thanks...Adriana
<script language="JavaScript" type="text/javascript">
<!--
if (location.search) {
var image_filename = location.search.substring(1)
document.write('<IMG SRC="' + image_filename + '" width="110"
height="80">')
}
//-->
</script>
This is working great and the image shows up in the form just where I want it. Problem is, I don't know how to get this image (not the actual image but at least the image filename) to get sent to me through email when the user hits the submit button. Everything else on the form gets sent to me except this image (the image will always be different depending on what image was clicked on the page before) I also want to send this image to a confirmation page. Can someone please help me out with this?
Thanks...Adriana