Hi,
I have a number of drop down lists that need to be populated from one table based on the ID field. The query I am thinking of using is:
SELECT ID, Detail, Price FROM tbl_Product_List WHERE ID = 'varID1', varID2'
ORDER BY ID ASC
The variables would be gathered from parameters defined in a list like:
$varID1 = 'CASES'
$varID2 = 'SOFTWARE'
Then as part of the HTML for the select box where the tag name=" " appears I would just call the $varID# in its place.
Does this seem right to you guys or am I missing something.
MAny thanks
Ozzie