wolfdogg
08-08-2009, 01:54 PM
when passing this to the front end's form action
$this->mAction = $_SERVER['REQUEST_URI'];
when loaded in IE, i get website.com/?item=item1
when loaded in FF i get website.com/index.php?item=item1
IE will not post the variables it just refreshes the page. is there a known bug about this in IE, or could it be something else.
i solved it like this, can this backfire on me? $this->mAction = $_SERVER['PHP_SELF'] . (isset($_SERVER['QUERY_STRING']) ? '?' . $_SERVER['QUERY_STRING'] : NULL);
OK< that wasnt the problem at all, i got the url to display correctly IE, but the variables will still not post. I have a img submit, and i do a hve a value in it, Any ideas as to why its doing this in IE where in FF the transaction is working flawlessly? <input type="image" src="images/blah.gif" name="FOO" value="BAR" />
how do i get this submit button to work in IE 7+
$this->mAction = $_SERVER['REQUEST_URI'];
when loaded in IE, i get website.com/?item=item1
when loaded in FF i get website.com/index.php?item=item1
IE will not post the variables it just refreshes the page. is there a known bug about this in IE, or could it be something else.
i solved it like this, can this backfire on me? $this->mAction = $_SERVER['PHP_SELF'] . (isset($_SERVER['QUERY_STRING']) ? '?' . $_SERVER['QUERY_STRING'] : NULL);
OK< that wasnt the problem at all, i got the url to display correctly IE, but the variables will still not post. I have a img submit, and i do a hve a value in it, Any ideas as to why its doing this in IE where in FF the transaction is working flawlessly? <input type="image" src="images/blah.gif" name="FOO" value="BAR" />
how do i get this submit button to work in IE 7+