The following code works great on safari and Firefox but dumps out on IE. What I mean by bumps out is, it fails to detect connect to the URL on IE (download.error).
Any suggestions to fix this? I am working on Unity v2.
-Mark
=================
//URL for php sendmail script
var addFeedbackUrl=“http://localhost/~grobm/sendmail2.php”;
//values to pass
var to = “”;
var email = “”;
var message = “”;
to = TeacherEmail; //grabbing cookie value
email = StudentEmail; //grabbing cookie value
message = FeedbackStr; //grabbing cookie value
function postfeedback(to, email, message) {
// Create a form object for sending feedback
var form = new WWWForm();
form.AddField( “to”, to );
form.AddField( “email”, email );
form.AddField( “message”, message );
// Create a download object
var download = new WWW( addFeedbackUrl, form );
// Wait until the download is done
yield download;