We have this database with search form in MS-Access.
We use cascading comboboxes with the following code to minimize the length of the list and to make the shown items unique.
SELECT DISTINCT Categorie.Categorie
FROM Categorie;
Private Sub Catzoek_AfterUpdate()
Me!Subzoek.Requery
End Sub
SELECT DISTINCT Categorie.Subcategorie
FROM Categorie
WHERE (((Categorie.Categorie)=[Forms]![Zoekscherm]![Catzoek].[value]));
The result is that only the Subcat items are shows that fit with the selected Cat-item.
It works fine so thats not the problem.
However we need on every PC the program MS-Access.
We would like to change it to a web-bases thingy with PHP.
With the brainstorming of "what is required" our bigest worry is to bring the result from the query/SQL into the html code. More specific in the option values of the forms that are programmed there.
Is this idea possible or to much to ask for?
Any comment or suggestion is welcome.
Thanks ahead
We use cascading comboboxes with the following code to minimize the length of the list and to make the shown items unique.
SELECT DISTINCT Categorie.Categorie
FROM Categorie;
Private Sub Catzoek_AfterUpdate()
Me!Subzoek.Requery
End Sub
SELECT DISTINCT Categorie.Subcategorie
FROM Categorie
WHERE (((Categorie.Categorie)=[Forms]![Zoekscherm]![Catzoek].[value]));
The result is that only the Subcat items are shows that fit with the selected Cat-item.
It works fine so thats not the problem.
However we need on every PC the program MS-Access.
We would like to change it to a web-bases thingy with PHP.
With the brainstorming of "what is required" our bigest worry is to bring the result from the query/SQL into the html code. More specific in the option values of the forms that are programmed there.
Is this idea possible or to much to ask for?
Any comment or suggestion is welcome.
Thanks ahead