Good day,

I was reading about sending methods last night and though that I would prefer to use send tan sendAndLoad in my script because my swf doesn't need to load any response from my php file but I have tried it, with or withouth target and HTTP methods and I can't get it to work.

I have this code:

Code:
var lvSend = new LoadVars();
lvSend.from;
lvSend.to;
lvSend.subject;
lvSend.missatge;
			
lvSend.sendAndLoad("http://localhost/sendEmail.php",lvSend,"POST");
in an extension I am using to send an automated email reply.

I have tried:

Code:
 lvSend.send("http://localhost/sendEmail.php", "_blank");
 lvSend.send("http://localhost/sendEmail.php", "_blank", "POST");
 lvSend.send("http://localhost/sendEmail.php", "POST");
either I've forgot to restart my extension after making any changes to it, or none of these ways work. Is sending php variables different?