I'm looking to create a form/script, for my phpbb, where User1 fills in a Form, with two fields. One field requires the User1s Name, checked against the Registration database for validity.
The second field requires User2 Name, checked against the Registration database for validity.
User1 selects the Proceed Button and, once both Names are verified to be valid PHPbb User Names, two lines of information are displayed on that page, from a PHPbb database table related to User2.
Additionally, I'd like the Proceed Button to trigger two functions. One function it performs is it sends the same message, via two links, relating to User 2.
Is this possible? Can someone assist me? Thanks.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
in short, the answer is no.
you can create the form interface using phpFormGenerator for what you are trying to do, but it will not be able to do any "dependent" processing. I.e., it cannot verify something against a database. That is really out of the scope of a form generator .. what you are hinting at is some artificially intelligent program :P the form generator is smart, but not quite that intelligent.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I'm looking to create a form/script, for my phpbb, where User1 fills in a Form, with two fields. One field requires the User1s Name, checked against the Registration database for validity.
The second field requires User2 Name, checked against the Registration database for validity.
User1 selects the Proceed Button and, once both Names are verified to be valid PHPbb User Names, two lines of information are displayed on that page, from a PHPbb database table related to User2.
Additionally, I'd like the Proceed Button to trigger two functions. One function it performs is it sends the same message, via two links, relating to User 2.
Is this possible? Can someone assist me? Thanks.
in short, the answer is no.
you can create the form interface using phpFormGenerator for what you are trying to do, but it will not be able to do any "dependent" processing. I.e., it cannot verify something against a database. That is really out of the scope of a form generator .. what you are hinting at is some artificially intelligent program :P the form generator is smart, but not quite that intelligent.