Sending POST data from Flash?

well althought I am not a MAC fan, safari is not bad, compared to the other options on that platform…
and since microsoft has let go of IE for the MAC, having sites work right with safari will probably become more important…

I still dont get why its not working right… maybe you already did this, but try maing a simple fla that just tests sendAndLoad. make sure to test it in the browser as suggested before…

Okay so is anything being included in the $_POST array, have you tried a simple send() and display the contents of the POST array on the screen to see whats up.


 lv = new LoadVars();
 lv.var1 = "foo";
 lv.var2 = "bar";
 lv.send("script.php", "_blank", "POST");
 

 <?php
 print_r($_POST);
 ?>
 

I doubt that it’ll work Louie. It has already been tried before as pointed out by James above.

Maybe its got something to do with Flash Player for the Safari. Which version have you got in your Safari, Peter?

Well something read suggested safari might be mucking up variable names, so by dumping the entire contents of the array it might help to show if anything is being sent through POST, instead of checkinf specific variable names.

yeah, ok.