Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
I am trying to find a straightforward query method (no php or anything else) for related tables
I am selecting the primary key number of Table1 from a list box list.
SELECT table1.fieldname1, table1.fieldname2, table2.fieldname1, table2,fieldname2 ... FROM table1, table2 WHERE table1.id=table2.id AND table1.id=$idfromlist;