PhotoPost Community

PhotoPost Community (http://www.photopost.com/forum/)
-   Classifieds Suggestions (http://www.photopost.com/forum/classifieds-suggestions/)
-   -   pp-inc.php W3C Markup Validation Service (http://www.photopost.com/forum/classifieds-suggestions/133598-pp-inc-php-w3c-markup-validation-service.html)

oldengine October 1st, 2007 02:14 PM

pp-inc.php W3C Markup Validation Service
 
Code:

Content visible to verified customers only.

Michael P October 1st, 2007 06:28 PM

Thanks!

oldengine October 7th, 2007 05:13 PM

login.tmpl Correction
 
Code:

Content visible to verified customers only.

oldengine October 7th, 2007 08:19 PM

showcat.php
 
This line needs help and I'm into it deeper than I should be, But W3C goes into alarm mode on it.

Line 310, Column 100: document type does not allow element "form" here; missing one of "object", "applet", "map", "iframe", "ins", "del" start-tag.
/classifieds/showcat.php">
The mentioned element is not allowed to appear in the context in which you've placed it; the other mentioned elements are the only ones that are both allowed there and can contain the element mentioned. This might mean that you need a containing element, or possibly that you've forgotten to close a previous element.
One possible cause for this message is that you have attempted to put a block-level element (such as "<p>" or "<table>") inside an inline element (such as "<a>", "<span>", or "<font>").

HTML the way it is...

# <td class="tddetails" align="center">
# <font class="small"><form method="post" action="http://www.website.com/classifieds/showcat.php">
# <span style="font-size: 7pt;">Enter Your Zip Code</span><br />
# <input type="hidden" size="5" name="cat" value="2" />
# <input class="font-size: 7pt;" type="text" size="5" maxlength="5" name="myzipcode" />
# <input type="image" align="bottom" src="http://www.website.com/classifieds/images/go.gif" /></form></font>
# </td>

HTML the way it should be...

<td class="tddetails" align="center">
<form class="small" method="post" action="http://www.website.com/classifieds/showcat.php">
<span class="c6">Enter Your Zip Code</span><br />
<input type="hidden" size="5" name="cat" value="2" />
<input class="font-size: 7pt;" type="text" size="5" maxlength="5" name="myzipcode" />
<input type="image" align="bottom" src="http://www.website.com/classifieds/images/go.gif" /></form>
</td>


showcat.php code section...
Code:

Content visible to verified customers only.
Template:
Code:

Content visible to verified customers only.


All times are GMT -5. The time now is 08:55 PM.

Powered by vBulletin® Version 3.8.1
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97