Is it possible to have an include function several times on the same page pointing to the same php file?
Here is my setup:
I have a page (form.php) which uses forms to run a query in another (results.php).
This page displays several tables based on how many records are selected the query. I then want an 'include ('pictures.php') in a row of each table.
The pictures.php diplays the variables of the record so will display different information from table to table.
---------------------------------------------------------------------------------
Currently I have include/images.php within a table column which works fine for the first record but the others do not respond. I'm guessing I need to create a new images.php object to achieve this but not sure on how to do so.
Sorry if my description seems confusing.
Thanks
Nick