Here is the whole picture--please offer assistance if you have the time.
I really appreciate your help.
The PHP is in the menu only in the spots that have entries in the database:
e.g. <a class="item2" href="<?php echo $tech_url; ?>"> Tech Sheet - <?php echo $techsheet; ?> </a>
I have two fields in MYSQL:
url15_url(URL) url15(description) both set to NULL-no and default-blank
(I am using PHP MYSQL and I left nothing in the default)
Here is the test link:
http://www.attotech.com/gary_side_test.html
Below is the bottom section of the menu with bolded area where I am having issues. I need the "Special" to only appear when there is something in the Database fields url15 and url15_url
<a class="item3 arrow" href="javascript:void(0)">Request Information<img src="/images/arrow3.gif" width="10" height="12" alt="" /></a>
<div style="border: 2px; #FFFFFF" class="section">
<a class="item2" href="/oem.html">Request Sales Support</a>
<a class="item2" href="/techsupt.html">Request Technical Support</a>
</div>
<a class="item3 arrow" href="javascript:void(0)">Solutions<img src="/images/arrow3.gif" width="10" height="12" alt="" /></a>
<div style="border: 2px; #FFFFFF" class="section">
<a class="item2" href="/oemsolutions.html">OEM</a>
<a class="item2" href="/digitalcc.html">Digital Content Creation</a>
<a class="item2" href="/business.html">Backup</a>
</div>
<a class="item3 arrow" href="javascript:void(0)">Special<img src="/images/arrow3.gif" width="10" height="12" alt="" /></a>
<div style="border: 2px; #FFFFFF" class="section">
<?php
if (isset($url15) and $url15 != "") {
// Check that there is an entry in the database
// if the url15 field is set to NOT NULL and DEFAULTs to ""
// you can use if ($url15 !="") {
echo "<a class="/item2/" href="/$url15_url/">Special: $url15</a>";
}
?> </div>
</td>
</tr>
</table><!-- #EndLibraryItem -->
Thank you for your time--If there is something you don't understand, please let me know...