How do I display a list

I have a select with make (car makes) that opens up a double select of models for that make. After someone chooses make and models, I want that information listed on the page for them to see their selection before they choose their next make. Multi-line text won’t hold enough. What is the best way to do this? I can toss it into a temporary table and display in a modal grid if I could figure out how to base a grid on a table that doesn’t exist…yet.

Not sure if this would help, but I have created something similar, by creating the temp table initially, creating the application on this table, and then drop/create in my code. Of course, the structure of the fields must be the same, but it worked for me.

Was pondering that, but I have to specify a legitimate table to construct the application and in this case the application comes before the table. Are you saying you have a template table, base the application on that, but actually populate from a separate select from a temp table?

To generate valid code for the application, you need a valid table. But once done, you can delete it and make it temporary.

Yep, I think I got there. Just made an empty table with the same fields on which to base the grid and then did all off the temp table. So far ok. Thanks for your help.