Re: [PHP] multiple forms one page

2012-08-27 Thread Tedd Sperling
On Aug 27, 2012, at 12:08 AM, Rosie Williams rosiemariewilli...@hotmail.com wrote: Hi all, I am a newbie to PHP. I have several php forms which were originally on separate pages now included in the one page. Each form had the following code in it: function mysql_fix_string($string){

Re: [PHP] multiple forms one page

2012-08-26 Thread tamouse mailing lists
On Sun, Aug 26, 2012 at 11:08 PM, Rosie Williams rosiemariewilli...@hotmail.com wrote: Hi all, I am a newbie to PHP. I have several php forms which were originally on separate pages now included in the one page. Each form had the following code in it: function mysql_fix_string($string){

Re: [PHP] multiple forms one page

2012-08-26 Thread Adam Richardson
On Mon, Aug 27, 2012 at 12:08 AM, Rosie Williams rosiemariewilli...@hotmail.com wrote: Hi all, I am a newbie to PHP. I have several php forms which were originally on separate pages now included in the one page. Each form had the following code in it: function mysql_fix_string($string){

RE: [PHP] multiple FORMS on same page problem.

2003-09-17 Thread Ruessel, Jan
) Cc: [EMAIL PROTECTED] Subject: Re: [PHP] multiple FORMS on same page problem. Golawala, Moiz M (IndSys, GE Interlogix) wrote: It is almost working.. I can't figure out why I can get the someVal to page5.php. file: page4.php ?php if (isset($_REQUEST['submit1'])){ echo button 1

RE: [PHP] multiple FORMS on same page problem.

2003-09-16 Thread Golawala, Moiz M (IndSys, GE Interlogix)
is? Thanx Moiz -Original Message- From: CPT John W. Holmes [mailto:[EMAIL PROTECTED] Sent: Monday, September 15, 2003 4:36 PM To: Golawala, Moiz M (IndSys, GE Interlogix); [EMAIL PROTECTED] Subject: Re: [PHP] multiple FORMS on same page problem. You can only use one form, as you've figured out

Re: [PHP] multiple FORMS on same page problem.

2003-09-16 Thread John W. Holmes
Golawala, Moiz M (IndSys, GE Interlogix) wrote: It is almost working.. I can't figure out why I can get the someVal to page5.php. file: page4.php ?php if (isset($_REQUEST['submit1'])){ echo button 1 was clicked, act accordingly; echo this the request values; echo $_REQUEST['someVal'];

RE: [PHP] multiple FORMS on same page problem.

2003-09-15 Thread Vail, Warren
I don't know of any rule that says you cannot have two submit button in the same form. Of course, if you need to know which was clicked, you will either need to name them differently or detect their values in your form processing routine. If the button is clicked that should take you to

Re: [PHP] multiple FORMS on same page problem.

2003-09-15 Thread CPT John W. Holmes
You can only use one form, as you've figured out. You can have PHP determine the action for each button, though.. In a form with two buttons, say names submit1 and submit2, only one variable will be set when the form is submitted, the actual button that was clicked. So you can use logic like this

Re: [PHP] multiple FORMS on same page problem.

2003-09-15 Thread Chris Shiflett
--- Golawala, Moiz M (IndSys, GE Interlogix) [EMAIL PROTECTED] wrote: I am creating a page with 2 buttons. ... form action=page4.php method=post ?php echo this is page 4; ? input type=text name='someVal' value='' input type='submit' value='page4 Submit' /form form

Re: [PHP] Multiple Forms

2003-09-10 Thread Matthew Vos
html body iframe name=post1 src=about:blank height=1 width=1 frameborder=no scrolling=no/iframe iframe name=post2 src=about:blank height=1 width=1 frameborder=no scrolling=no/iframe form name=form1 action=form_parser1.php target=post1 input type=text name=form1_value1 /form form name=form2

Re: [PHP] Multiple Forms

2003-09-09 Thread Robert Cummings
You can have two different forms posted to two different URLs. Not sure if you can in a single submit post two different forms to two different URLs except maybe with Javascript. Cheers, Rob. On Tue, 2003-09-09 at 20:11, Dan Anderson wrote: Is it possible to tell a browser to send form a to URL

Re: [PHP] Multiple forms

2002-12-30 Thread Tyler Longren
- Original Message - From: Doug Coning [EMAIL PROTECTED] To: php-general [EMAIL PROTECTED] Sent: Monday, December 30, 2002 3:26 PM Subject: [PHP] Multiple forms Hi all, I have an update page that has a form in it. However, I want to add another form in the same page. My current

Re: [PHP] Multiple forms

2002-12-30 Thread Marco Tabini
You should be able to insert a hidden field in your form and that check against that in your PHP script to determine which (if any) of your form was submitted: form input type=hidden name=f value=1 /form form input type=hidden name=f value=2 /form in your script: ?php switch ($_POST['f']) {

RE: [PHP] Multiple forms

2002-12-30 Thread John W. Holmes
I have an update page that has a form in it. However, I want to add another form in the same page. My current form acts upon itself (i.e. Action = the same page). If I set up another form to do the same, how would my PHP determine with action submit button was acted upon? Currently,

Re: [PHP] Multiple forms

2002-12-30 Thread Chris Wesley
On Mon, 30 Dec 2002, Doug Coning wrote: However, I want to add another form in the same page. My current form acts upon itself (i.e. Action = the same page). If I set up another form to do the same, how would my PHP determine with action submit button was acted upon? Give your submit

Re: [PHP] multiple forms on the same page

2002-11-13 Thread Marek Kilimajer
No, simply name them differently (form name=formOne ...) John Meyer wrote: hi, I have multiple forms on a page that refers to itself on the action. The only difference is that one has one extra field. The two have every other name in common. Will this be difficult to handle? -- PHP

Re: [PHP] Multiple Forms and 1 SQL table

2002-07-03 Thread Analysis Solutions
On Wed, Jul 03, 2002 at 07:18:45PM -0600, CM wrote: What do you do if you have a huge form that you want broken up into several different forms but each time the submit button is pressed the info is saved to the sql table. Do you just create the table on the first form submit and then on

Re: [PHP] Multiple Forms and 1 SQL table

2002-07-03 Thread Alberto Serra
CM wrote: What do you do if you have a huge form that you want broken up into several different forms but each time the submit button is pressed the info is saved to the sql table. Do you just create the table on the first form submit and then on each subsequent form you just update the

RE: [PHP] Multiple Forms

2002-03-03 Thread Martin Towell
1) not unless you have them opening up a new window for each form 2) combine them into one form Martin -Original Message- From: Ramesh Nagendra Pillai [mailto:[EMAIL PROTECTED]] Sent: Monday, March 04, 2002 2:27 PM To: Php Mailing list Subject: [PHP] Multiple Forms Hai I am having

RE: [PHP] Multiple Forms

2002-03-03 Thread Zak Greant
On Sun, 2002-03-03 at 20:31, Martin Towell wrote: 1) not unless you have them opening up a new window for each form 2) combine them into one form Also, this topic is covered quite often on this list Check the list archives for the various solutions people have used