php email form problem help!!

Ye' old general discussion board. Basically, for everything that isn't covered elsewhere. Come here to shoot the breeze, shoot your mouth off, or whatever suits your fancy.
This forum is not for asking programming related questions.

Moderator: General Moderators

Post Reply
barnettj7
Forum Newbie
Posts: 1
Joined: Thu May 03, 2012 11:31 pm

php email form problem help!!

Post by barnettj7 »

hello, i am looking to see if anyone can give some advice on a php form problem.

I have a website that has a basic php email form.

The layout is such.

The user clicks on various radio buttons, once they have made their choices they click a preview button, this preview brings in a hidden div that display their input and then proceeds to ask for additional input.

The problem is it's basically two forms and since you can't imbed two forms I don't know a way of passing the preview values which are just divs into the form for email submission.

can anyone tell me what i can do from here
User avatar
Robert07
Forum Contributor
Posts: 113
Joined: Tue Jun 17, 2008 1:41 pm

Re: php email form problem help!!

Post by Robert07 »

It's a little difficult to picture it without any code listed, but it sounds like you could either use javascript to populate your form divs (like element.innerHTML="new html here") or use a lightbox or something with an iframe and then you're context is a whole new page (you could pass params in the url in that case, or in the parameter settings of the lightbox).
Post Reply