using POST parameters in SQL
-
I have a sub-type/super-type set of tables
CUSTOMER ( id, name , type )
where the type attribute is a data switch into 3 subordinate tablesCNonProfit ( id, 501c3Status, … )
CCompany (id, owner … )
CPerson (id, wifesName … )
I want to select by name from the master table (CUSTOMER) and depending on the retrieved type go to 1 of 3 different pages to display that id’s information.
so..
in the second page (CPerson) i’m going to need the retrieved type and the id – how do i pass them from the first (CUSTOMER) page?
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘using POST parameters in SQL’ is closed to new replies.