Site Cloner PHP Script
Bargain Hunter PHP Script
Job Hunter PHP Script
Site Login and Access Control PHP Script
Tags Inside Lists

When using lists, it is very important to make sure that the bold and anchor tags reside inside the <li></li> tags so the lists will look proper in all browsers.

Proper order for links and bold text within a list element.
<li ><b><a  class=”list” href=”mypage.html”</a></b></li>

Improper Order    
The order below has white space before and after a list element which will cause undetectable spaces with Internet Explorer.  The code would look fine with other browsers.

<b><li ><a  class=”list” href=”mypage.html”</a></li></b>