Instead of using master/detail pages, I want to have two
pages, one for speakers and another for sessions.
speakers.php
Each speaker has a name, title, bio and session.
session should link to sessions.php and to that particular
session.
sessions.php
Each session has a title, speaker, and description.
speaker should link to speaker.php and to that particular
speaker.
I have seriously hacked it to work with anchors: not good.
<a name="<?php echo $row_rsEvents['EventID'];
?>">
Can anyone help out?
Thanks!
Plush