Another newbie question: Passing variables
Sorry to ask such a basic question, but how do I pass a value (not input by user) from one page to another?
For example, I am creating a CMS set of pages. The first page lists all the tables I have in the datasource
eg
- Tutorials
- Menus
- Knowledgebase
etc
When I click on one of the choices, I want to link to a form that then lists the current contents of that table - so the conditional syntax on the action page might be
if <passed variable>="tutorials" then
CFQuery....
select * from TutorialTable
elseif <passed variable>="menus" then
CFQuery,#...
select * from Menustable
end if
etc etc
Any ideas?
Many Thanks
