hello,
I have a home page. It has a combo box that the user selects a "Type of person" they are.
They hit the go button.
ALSO, on the home page and after they hit go,
Depending on what type of person they are, it populates a list box of services for that type of person.
They can select these types of services and go to the detailed of these services.
hope that make since.
NOW, my problem is this:
The results page works, via getting the selected services the user chose BUT I cannot get the type of person they are form the combo box!!!
I am using the same code for the list box as I am for the combo box.
Why can I not get the value from the combobox????
<?php
if (isset($HTTP_GET_VARS["lb_service_list"]))
{$services= $HTTP_GET_VARS["lb_service_list"];}
if (isset($HTTP_GET_VARS["cmb_visitor_types"]))
{$type = $HTTP_GET_VARS["cmb_visitor_types"];}
?>
Thanks