Right, ignoring the subject matter, looking at the content... * You have meta tags in the body of the page, not in the head section * There is alot of repetition in the meta tags * html like <label>User Name: <input name="UserName" type="text" class="text" maxlength="30"></label> should be <label for='UserName'>User Name:</label> <input name="UserName" id='UserName' type="text" class="text" maxlength="30"> * your h1 and h2 tags don't seem to be working for you, should have search phrases in them if possible. * later pages don't seem to be debugged yet * once up and running you need to get back links.
The site is still a work in progress, lots of bugs still to go. Thanks for your advise, I will start making the changes you recomended straight away. This is my first site using a database and php so it has been slow to develop.
What difference would changing the labels from: <label>User Name: <input name="UserName" type="text" class="text" maxlength="30"></label> to: <label for='UserName'>User Name:</label> <input name="UserName" id='UserName' type="text" class="text" maxlength="30"> make?