RE: Image Viewing Problems
2: For a webpage you should only have one tag that explains the document type in a page and that should be at the very top and you should only have one <html> and one </html>. It's like you have another page inside a table. You might have been planning to put the page in an iframe (this isn't the case though) It looks like that page might have been included into the main page. for example
<td>
<?php include("affiliates.php"); ?>
</td>
affiliates.php:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>...
This post was edited on 07-29-2004 at 04:33 PM by jren207.
|