.PHP Coding question
Created a site using .php in Dreamweaver, on all the pages the header is coded
<?php
include('header.php');
?>
it has navigation links
<a href="./" title="Home">Home</a></li>
<li><a href="bio.php" title="Bio">Bio</a></li>
in the body of the page there are tables which have links to videos like this************************************************************
<div class="home_item_small div_common"><img width="275" height="150" border="0" class="home_item_img" title="" alt="" src="images/BaihraineStill.png"><br>
<!--<i>Saturday Night Live</i><br />--><b>BALMAIN</b><br />
Directed by Pascal Dangin</div>
</a>
</div>
I need to have the link with the *************************** changed so when clicking I can link to
<a href="./" title="Home">Home</a></li>
<li><a href="bio.php" title="Bio">Bio</a>
I'm not a php person. Anyone?
