Vars from flash to simple.php

I have made this script which redirects my to simple.php. But it seems like it does send the vars with to my simple.php fil. What i’m i doing wrong?

Hope you guys can help

process_lv = new LoadVars();
process_lv.newSearch = 1;
process_lv.searchType = 1;
process_lv.searchArea = 0;
process_lv.pictureReq = 0;
process_lv.fromYear = “0000”;
process_lv.fromMonth = “00”;
process_lv.fromDay = “00”;
process_lv.toYear = “0000”;
process_lv.toMonth = “00”;
process_lv.toDay = “00”;
process_lv.duration = 0;
// These two lines with $continent and $country,
// I don’tknow what you are trying to do, but you
// should be able to handle that according to the
// variable you’ve set up for them…
process_lv.continent = $continent;
process_lv.country = $country;
process_lv.region = “0”;
process_lv.rCity = “0”;
process_lv.rooms = “0”;
process_lv.oldContinent = “0”;
process_lv.oldCountry = “0”;
process_lv.oldRegion = “0”;
getURL("…/search/simple.php", “process_lv”, “POST”);
// or use sendAndLoad() function if you want to get
// something back from the PHP script…
stop()
:-/ :-/