Hi ermau
$_POST and $_GET works, but not together. I have a form, which accepts a value from another website. But it also needs to do some checking of it's own, so what I'v done is in the textarea's <? echo $name; ?> and in the beginning of the script, I have $name=$_POST['name'];
My page accepts info from another site in the URL, but then the $_POST option doesn't work, and I need to use the $_GET option. The url comes in the form of
www.mydomain.com/application_form.php?domainname=new.mydomain.com
But looking at your post, this is probably a security issue. The page does a lot of things, so I'm just going include a few snippets of code, that has todo with this particular issue.
I only use $_REQUEST for this one variable thought, the others on the page use $_POST
And then from there on, one all the fields are filled in, I use the data to do some checks on on certain conditions perform certain tasks. But this is the basic outlay