Hello,
I am creating a site that uses templates in Dreamweaver MX. One of the links on my navigation menu points to a page which pulls the information based on the latest date entered into the database.
The link is shown below as:
<td>
<a href="../changeitem/selection_details.php?date_id=<?php echo $row_rsDateID['date_id']; ?>">Edit Agenda Item</a>
</td>
The problem I am encountering is that as I update my template, the code in the 'global' navigation menu changes to:
<td>
<a href="changeitem/selection_details.php?date_id=%3C?php%20echo%20$row_rsDateID%5B%27date_id%27%5D;%20?%3E">Edit Agenda Item</a>
</td>
When this happens, I don't get the 'date_id' when I hover over the link, but rather the php code to make the link...?!
Has anyone encountered and/or cured this problem?