I have a simple little script that captures some data from a form and the just e-mails it off. My problem is, IE isn't formatting the data the way I expect it too.
For example, I ask for first and last names, among other things. When I use the Opera browser it sends the data to me like this:
firstname=bob&lastname=smith
Where are the data items are seperated by a "&" symbol. This is how I expected it to work.
When IE sends the info it sends it to me like this:
firstname=Bob lastname=Smith
where the data isn't seperated by "&" and then my script goes on to choke when it tries to process the data since I'm expecting the "&" symbols.
It seems to be that the way Opera is formatting the data is way it should be and I don't understand why IE is doing it differently.
Is there anything I can do, somewhat command I can send to the IE Browser for example, that will cause it to format it's data the way Opera does?
Thanks.
For example, I ask for first and last names, among other things. When I use the Opera browser it sends the data to me like this:
firstname=bob&lastname=smith
Where are the data items are seperated by a "&" symbol. This is how I expected it to work.
When IE sends the info it sends it to me like this:
firstname=Bob lastname=Smith
where the data isn't seperated by "&" and then my script goes on to choke when it tries to process the data since I'm expecting the "&" symbols.
It seems to be that the way Opera is formatting the data is way it should be and I don't understand why IE is doing it differently.
Is there anything I can do, somewhat command I can send to the IE Browser for example, that will cause it to format it's data the way Opera does?
Thanks.