master_table:
mastertable_id
car_id
detail_table:
mastertable_id-----------------------------> (linked from MASTER TABLE)
parts_id --------------------------> (dependent dropdown based on car_id value in master table)
is it posible to use dependent dropdown on detail table based on a field value in master table when add data ?
on detail page (parts_id) i use this where clause lookup :
" car_id = " . $_SESSION["car_id"]
[color="#1C2837"]