(OT?) Timing problems with PHP and IE
Moderator: General Moderators
(OT?) Timing problems with PHP and IE
Hi,
I don't know if this is Offtopic but I'm facing strange things here which probably are no PHP problems.
I'm sending data from an HTML form to a PHP script. There I process the POST data and do a SELECT query to an Oracle Database and build a table showing the result - nothing special.
But sometimes it happens that the POST data does not arrive or something else happens so that I don't get any table. When I hit reload 1 or 2 times (F5) the table will be displayed. Also when I hit 'back' and send the form again after 1 or 2 times everything works fine. This happens only in IE6.0. I couldn't reproduce it with Mozilla so far.
I also think this started to happen after the page is running on https. But this can't really be the problem, can it?
I'd be happy about every hint from you guys.
Thanks a lot.
Regards,
Thomas
I don't know if this is Offtopic but I'm facing strange things here which probably are no PHP problems.
I'm sending data from an HTML form to a PHP script. There I process the POST data and do a SELECT query to an Oracle Database and build a table showing the result - nothing special.
But sometimes it happens that the POST data does not arrive or something else happens so that I don't get any table. When I hit reload 1 or 2 times (F5) the table will be displayed. Also when I hit 'back' and send the form again after 1 or 2 times everything works fine. This happens only in IE6.0. I couldn't reproduce it with Mozilla so far.
I also think this started to happen after the page is running on https. But this can't really be the problem, can it?
I'd be happy about every hint from you guys.
Thanks a lot.
Regards,
Thomas
- John Cartwright
- Site Admin
- Posts: 11470
- Joined: Tue Dec 23, 2003 2:10 am
- Location: Toronto
- Contact:
-
TheBentinel.com
- Forum Contributor
- Posts: 282
- Joined: Wed Mar 10, 2004 1:52 pm
- Location: Columbus, Ohio
-
TheBentinel.com
- Forum Contributor
- Posts: 282
- Joined: Wed Mar 10, 2004 1:52 pm
- Location: Columbus, Ohio
-
d3ad1ysp0rk
- Forum Donator
- Posts: 1661
- Joined: Mon Oct 20, 2003 8:31 pm
- Location: Maine, USA
Is that from your code?if ($POST_["field"]!="") {
If so, change it to
Code: Select all
if ($_POST["field"]!="") {