S
Stefan Drissen
Guest
Your client and server date formats do not match (session:date-format). You have already 'corrupted' your date value on the client side by putting it in a character. You have several options: 1. attempt to parse the date value out of the character on the server (mess) 2. pass client date-format to server and set server date format to client date-format (not bad) 3. pass individual query values to the server and construct the query string on the server - you should really be doing this anyway - allowing a query phrase from the client to be used on the server without any other validation opens your server up for all sorts of nastiness.
Continue reading...
Continue reading...