I have added this to html code that links to 'bikes_view' from a page called 'one_way' .
<A href="bikes_view.php?editid1={$custom_link}">View
Bike</A>
and below is code for EVENTS - List Page: after record processed for (one_way) page.
$record["custom_link"]=$data["id"]; I have also tried $record["custom_link"]=$data["bikes"]; without success.
How do I select 'bikes' from the 'one way'table?
To summarise: I have a list of motorcycles in their own table called 'one_way' and the 'make' was added to the record from a 'make' table.
I need to have a link to a specific motorcycle in a 'bikes_view' page which also gets its 'make' that was added to the record from the 'make' table.
Thanks