Ok here is the deal... I have a shopping cart that when clicking "view cart" you see all the products and the quantities of those products. I need to create php code to add those quantities together and output that into another "input text box". (basically add the quantities of a...
YES !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! worked on this since 7am THANKS EVERYONE!!!!!!!!!!!!!! here is the code that worked <?php $to = "lance@lancekorsun.com"; $msg .= "$name\n\n"; $msg .= "$email\n\n"; $msg .= "$address\n\n"; $msg .= "$...
ok, I started from scratch, and the code for the send button is this: on (release) { if (name eq "" or email eq "" or address eq "" or address2 eq "" or city eq "" or state eq "" or zipcode eq "") { stop (); } else { loadVariables...
here is the php I have for this <?php if ($_POST) { $mailTo = "zunskigraphics@aol.com"; $mailSubject = "[Contact] Free Bible Form - (" . $_POST['name'] . ")"; $Header = "MIME-Version: 1.0\r\n"; $Header .= "Content-type: text/html; charset=iso-8859-1\r\n&q...
I am doing a website, that is 100% flash. I am trying to establish a submit form that sends an email with : name address address2 city state zipcode email in flash my varibles are the above names with a "S" infront ("Sname", "Saddress", ect....) Can anyone tell me how t...