No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
5 Posted Topics
Re: [code=php] <?php $num_days = 20; echo date("M-d-Y", mktime(0, 0, 0, m, d, yyyy)+$num_days*60*60*24); ?> [/code] The above is a purely php way of finding the number of days from a certain date. In the date, notice I put m and d and NOT mm and dd. For mktime use 8, … | |
Re: My experience with IE is that I blame IE for all my problems because it looks great in every other browser, so it must be IE. Usually it turns out that my page won't validate because I forgot to close something or am missing a quote somewhere. IE just isn't … | |
Re: The same thing happened to me about a year ago. I'm fairly certain my problem was that I was using a reserved mysql word as a field name in my table. Even though the field name didn't show up in the insert code, so no error was thrown. I was … | |
Re: Your problem is that the editme function creates an input with the same name as an input that already exists (the hidden input). So you can only retrieve one value after you POST all the info. Easy fix is to change the name of the hidden input to something else … | |
Re: I think you are looking for one of these: document.getElementById('SelectId').options.length; OR document.getElementById('SelectId').selectedIndex; |
The End.