HighDots Forums  

Adding an include in a form.. Can I do it?

Macromedia Dreamweaver Macromedia Dreamweaver Discussions (macromedia.dreamweaver)


Discuss Adding an include in a form.. Can I do it? in the Macromedia Dreamweaver forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
megajam02
 
Posts: n/a

Default Adding an include in a form.. Can I do it? - 08-02-2004 , 10:42 PM






Ok,
Here's the deal. I have a web form that is going to serve as a registration
form for events my company will be sponsoring. Some of the events will be free,
some will not. For the pay events, I need to additional information, like
payment details, etc. I am hoping that I can pass a URL Parameter to the
registration form like "?charge=yes" to call an include that will extend the
basic form into a larger one with the payment fields on it.

I have everything done, however, when I pass the "yes" parameter, the
additional fields show, but they are on top of my basic form fields. Can
someone point me to where I have gone wrong?

Thanks,
Chris


Reply With Quote
  #2  
Old   
teiz77
 
Posts: n/a

Default Re: Adding an include in a form.. Can I do it? - 08-03-2004 , 03:41 AM






here is an example

<form name="form" method="post" action="something.php">
<!-- begin the normal form elements -->
<input type="text" name="textfield">
<!-- end the normal form elements -->

<?

// check if the url variable charge is set and the value is yes

if( (isset( $_GET['charge'] ) ) && ( $_GET['charge'] == yes ) {

// if so include the following file
include('filewithotherformelements.php');
}

?>
</form>
etc...


Reply With Quote
  #3  
Old   
megajam02
 
Posts: n/a

Default Re: Adding an include in a form.. Can I do it? - 08-03-2004 , 09:38 AM



Thanks teiz, gonna try it and see what shakes out.

Reply With Quote
Reply




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.