DWMX/Mac OSXJag
Entering info:
I'm creating a form for users to connect multiple 'fact sheets' with a single 'news letter'. Both exist in the same table. The user selects the 'fact sheets' from a dynamic list, which I then implode the results and dump it into the db. No problem.
Viewing info:
To view the results I use the explode function to get an ordered list of titles. No problem. What I can't do is make the results link to their proper page.
<?php
$fact_sheet_titles = $row_rsNR['fact_sheets'];
$factsheets = explode(",",$fact_sheet_titles);
foreach($factsheets as $fact_sheet){
echo $fact_sheet . "<br/>";
}
?>
The proper 'fact sheet' will display via an ID # passed through a URL. Any thought on how I can accomplish this? Thanks!