Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #37.0K
Ranked #4K
~962 People Reached
Favorite Forums

5 Posted Topics

Member Avatar for nathanpacker

[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, …

Member Avatar for ripraw
0
194
Member Avatar for jasystweb

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 …

Member Avatar for Airshow
0
240
Member Avatar for WickidGRAFX

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 …

Member Avatar for drjohn
0
162
Member Avatar for AnttiK

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 …

Member Avatar for AOlevel1
0
147
Member Avatar for palcham

I think you are looking for one of these: document.getElementById('SelectId').options.length; OR document.getElementById('SelectId').selectedIndex;

Member Avatar for palcham
0
219

The End.