Code Comments

Programming Forum and web based access to our favorite programming groups.
For Programmers: Free Programming Magazines | New: Database administration forum
Registration is free! Edit your profileCalendarFind other membersFrequently Asked QuestionsSearch -> 
Post New Thread











Thread
Author

Re: [PEAR] TrackSubmit question
That makes sense now. I've re-written the form as one page with two forms,
as shown below, and it works like a champ. Thank you!

form.php -----
<?php

// Load the QuickForm code
require "HTML/QuickForm.php";

$form1 = new HTML_QuickForm("form1", null, null, null, null, true);
$form2 = new HTML_QuickForm("form2", null, null, null, null, true);

$form1->addElement("text","entered_text","Enter some text");
$form1->addRule("entered_text","You must enter text","required");
$form1->addElement("submit","submit","Submit");

$valid = $form1->validate();
If ($valid) {
$form2->addElement("static",null,"You Entered :". $_POST["entered_text"]);
$form2->addElement("submit",null,"Reset");

$valid = $form2->validate();
If ($valid) {
}
$form2->display();
} else {
$form1->display();
}

?>

On May 27, 2005, Justin Patrin wrote:
>
> On 5/27/05, Lionel Worman <lworman@wittenberg.edu> wrote: 
> $_GET 
> take 
>
> trackSubmit automatically puts a hidden value in the form and the form
> won't validate if that value isn't in the submitted values. You don't
> have to do anything special to use it. It's mostly there so that you
> can have 2 forms on one page so that QF can know which one was
> submitted.
> 
> something 
> should 
> it 
>
> Well, this is because you're posting to form2.php, which doesn't check
> to see if form1.php is valid. PHP scripts are run completely, the
> output is sent to the browser, and the browser sends a response back.
> In this case, the browser is sending the response to form2.php, which
> isn't dealing with the submit of the first form.
>
> A better solution would be to leave the action alone and let the form
> submit to the page that created it (this is the "right" way to do it).
> Then the validation will work. If the form validates, process the
> data, then redirect to the second for with a header('Location:
> http://...');
>
> --
> Justin Patrin
>

Report this thread to moderator Post Follow-up to this message
Old Post
Lionel Worman
05-28-05 01:56 AM


Sponsored Links




Last Thread Next Thread Next
Search this forum -> 
Post New Thread

PHP Pear archive

Show a Printable Version Send to friend Email This Page to Someone! subscribe to this thread Receive updates to this thread
Computer Consultants
Programming Jobs
Visual Basic Controls
SQL Server Programming
Webservices
Java Security
Visual Studio
C# Programming
Visual J++
Software engineering
Open source Software
Perl Programming
PHP Programming
ASP Programming
ASP .NET Programming
Visual Basic Programming
Windows Scripting Host
Java Programming
Java Help
Java Beans
VBScript
Cobol
MAC Applications
Unix Programming
Forum Jump:
All times are GMT. The time now is 06:34 PM.

 
Free MCSE Braindumps | Real Estate Topics

Programming forum archive

Copyrights CodeComments.com 2004 - 2006

Powered by vBulletin Copyright 2000-2006 Jelsoft Enterprises Limited.