PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!
is there any additional code needed to make my code work for IE and not only firefox? sorry, i'm new to php so i wouldnt know if there is any. thanks. heres the code i used...
What part of it isn't working in Internet Explorer? For example, what is it doing in Firefox that it is not doing in IE?
I'm assuming you're referring to the output of the script not working as intended in IE, as the PHP code itself should work the same regardless of what browser you're using.
The part that isnt working for IE 6 is the part where i want to check all the checkboxes on the page. When i run the script on firefox all the checkboxes may be checked but it wont work on IE. thanks
And let http://validator.w3.org check <input type"=checkbox" checked /> if the doctype is xhtml.
This page is not Valid XHTML 1.0 Strict!
[...]
common cause for this error message is the use of "Attribute Minimization" in document types where it is not allowed, in XHTML for instance.
How to fix: For attributes such as compact, checked or selected, do not write e.g <option selected ... but rather <option selected="selected" ...