Please note: This is NOT a shopping cart or a checkout question! This is an entirely different thing! Also, I am 62 years old, and am not going to grow up to be a programmer. When I get this and a couple of other things under control, I will open my website to the public and start filling orders. I now own four Javascript books, and have not been able to figure this out on my own, after working on it at night for at least a couple months. Really and truly, any help would be greatly appreciated!
My products can be made with many options, and there are too many to show every variation of every product. Think of cabinets that can be made in different heights and widths, with or without doors, glass doors, wooden doors, etc. etc. etc. (My product is not cabinets, but this helps me explain).
Next to a photo of each of my products, I have a link that sends a thumbnail of the photo (jpeg) of the product to a page that let’s the potential customer suggest some options. The page contains a number of checkboxes, a textarea, and a couple other input types that are all sent me via my hosts cgi\formmailer. I cannot, however, figure out how to get the photo included in with the rest of the information.
The link on the products page looks like this, and it sends the image to the “Options” page;
<a href="Options.shtml?Photos/product.jpg">Let's talk about making some changes to this widget!</a>
On the options page, this script opens the image and places it on the page near the top between the <form> and </form> tags;
<script language="JavaScript" type="text/javascript">
<!--
//
if (location.search)
//
{var image_filename = location.search.substring(1)
//
document.write('<img src="' + image_filename + '">')}
//-->
</script>
The action is;
<form action="/cgi-bin/formmailer.pl" method="POST">, and the submit is a simple <input type="submit" value="Submit Form">. I repeat that the form action and submit button work as far as sending all the information in my form to me via e-mail EXCEPT the photo.
I would be happy if I could get the submit to include the photo, the URL, or the name of the photo (e.g. product.jpg). If I can't get some information about the product in the photo, I won't know which product the potential customer is talking about.
Can you help me.
P.S. If it is O.K. to use my real site for reference, here is the stuff. If not, please just delete this and repost it.
My site is oldmanleather.com. First, click on the link to “Handbags”.
The first handbag has a link next to it that says, “Let’s talk about making some changes to this bag”. Click on this link, and the “Options” page will open with a photo of the bag near the top. The name of the “Options” page is Checkbox03a.shtml. From here, you will be able to see what I have now, and perhaps suggest what I should do next.
Thank you,
Bo