I have two different pages having different form. All the forms are having
the same Action(input.htm). I need to modify  the code such that that the
details can be recorded in the database only after parsing the second page
.That means for the first page it should go to the loop (Declined)and for
the second page reverse.

 unless ( ($r->method eq "POST") && ($r->uri =~ /$bookingURL/)) 
  {
    $log->info("$moduleName: skipping ". $r->method ." request to ", $r->uri
);
    $log->info("$moduleName: Declining...");

    return Apache2::Const::DECLINED;
  }



Page 1.html
Form
Id      Name    Method  Action
member  member  post    input.htm


Page 2.html
Form
Id      Name    Method  Action
bookerConfirm   bookerConfirm   post    input.htm

Thanks.
-- 
View this message in context: 
http://www.nabble.com/booking-should-be-captured-only-on-the-last-page-tf4493025.html#a12814096
Sent from the mod_perl - General mailing list archive at Nabble.com.

Reply via email to