W3C XHTML compliancy problems
Posted: Wed Oct 19, 2005 7:56 pm
1. Is it not allowed to use h5 inside a p tag in the middle of a document?
I have this error coming up but h5 is only inside another block-level element, p.
You can have a look at the file here
2. Normally, I see that & in parameters have to be made as &
Do you guys normally explicitly make & as & or do you any other alternative?
This only allows you to put & when concatenating session value in URL.
I have this error coming up but h5 is only inside another block-level element, p.
You can have a look at the file here
Code: Select all
Error Line 364 column 7: document type does not allow element "h5" here; missing one of "object", "applet", "map", "iframe", "button", "ins", "del" start-tag.
<h5>Integrating our own or third-party shopping cart with Paypal</h5>
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>").2. Normally, I see that & in parameters have to be made as &
Do you guys normally explicitly make & as & or do you any other alternative?
Code: Select all
ini_set('arg_separator.output','&');