Ask a Question related to PHP Development, Design and Development.
-
Andy Hassall #1
Re: XHTMl validation and PHP
On Sun, 09 Nov 2003 15:51:36 -0500, Warren Oates <Warren@InHell.Com> wrote:
How about:>I don't know where to look for this. I have a form that submits a search
>query to a db. This all works fine, data is retrieved and displayed
>properly. I create a session to carry part of the data to the next page,
>where I update the db based on the results of the search.
>
>When I try to validate my page as strict xhtml, all is well, except that
>PHP adds a hidden input element to my form. In xhtml, input elements
>must be inside a block-level container (<div>, <p>, <whatever>), but
>when PHP adds the input element, it doesn't create the container
>(although it does add the correct end tag), and the validator chokes.
>
>Can someone point me somewhere?
[url]http://www.php.net/session[/url]
"
url_rewriter.tags string
url_rewriter.tags specifies which html tags are rewritten to include session id
if transparent sid support is enabled. Defaults to
a=href,area=href,frame=src,input=src,form=fakeentr y,fieldset=
Note: If you want XHTML conformity, remove the form entry and use the
<fieldset> tags around your form fields.
"
I'm assuming this means it will put the hidden input element inside a
<fieldset>?
--
Andy Hassall (andy@andyh.co.uk) icq(5747695) ([url]http://www.andyh.co.uk[/url])
Space: disk usage analysis tool ([url]http://www.andyhsoftware.co.uk/space[/url])
Andy Hassall Guest
-
xhtml validation of the table tag's "height" element
I'm having a little problem. I create an xhtml compliant document in dreamweaver, yet when i validate it using the xhtml 1.0 transitional validator,... -
ColdFusion and XHTML validation
I am creating my site using ColdFusion, I am also trying to create an W3C XHTML 1.0 Transitional site using a tableless CSS 2.0 design. But when I'm... -
xhtml Validation Errors
Hello. I am just learning to update html to xhtml and had a few validation errors I wondered if you could help me with. The first one says:... -
validation summary doesnt display when there's client-side validation
I have a custom validator that validates a numeric field, txtField, that allows for thousand separators. I also placed a validation summary so... -
only custom validation control does server side validation?
On a CustomValidator you have to provide the validation code because otherwise it doesn't know what to do for the validation. Other validator...



Reply With Quote

