I know this is simple stuff, but I've gone blank.I've just upgraded to Data Bridge and adding stuff with DA2. I'm trying to manually add the ID values to dynamic code so the required field from a table appears on a page.
If it were a link I would just add "?fieldID=1" but I can't see how to add it to something like:
"<?php echo $row_rsTable['imageField']; ?>"
I would normally just add a WHERE ID = 1 to the RecordSet, but I need to add specific lines from one table.
Any help please?
B

If I'm undestanding you correctly you would just add the dynamic field instead of the "1"
instead of this
"?fieldID=1"
This
"?fieldID=<?php echo $row_rsTable['imageField']; ?>"
Was that any help?


