Ok: I'm making a glossary for a school project, the problem that came up is weird:
I have one main swf : glossary.swf and one search swf : search.swf.
I've got one input field "search_string", and on the "go" button it loads search.swf in like this:
Code:
	loadMovieNum ("search.swf?s="+search_string, 10);
	gotoAndStop ("load_simple_search");
search.swf picks up the "s" variable (I can see it in a text field)
BUT: I then go on and load the search(within search.swf) with :
Code:
loadVariablesNum ("search.php?search=simple&search_string="+ this.s, 10, "POST");
The search class is working perfectly when loaded in the browser. (So the problem is not there)
Let's say that i pass "s=sale", then the search.php returns 0 results (once again I can see this in a text field), but when I put "sale sale sale" into the search_string field, I get back 15 (wich it should do according to if I look it up in search.php)

Now: why would this happen??
I've tried a lot of combinations on this, I even duplicated search_string 3 times and sent it to search.swf, but it still would not work.......

Can you see anything wrong here?? I've been working myself blind on this problem right now.

Thanks!