How do I link to an anchor within a multipage record set?
I have anchors named liked this, in a repeating field:
<a name="<?php echo $row_Recordset1['First']?><?php echo $row_Recordset1['Last']?>"></a>
But how do I let it know what page to look for the link on? I have a jump menu like this for the navigation:
<option value="<?php echo $row_Recordset1['link']?>"<?php if (!(strcmp($row_Recordset1['link'], ucfirst($row_Recordset1['Last'])))) {echo "SELECTED";} ?>><?php echo $row_Recordset1['First']?> <?php echo $row_Recordset1['Last']?></option>
Thanks,
Mike