Page 1 of 1
How can i transfer a parameter from one site to another one?
Posted: Thu Oct 23, 2008 1:24 am
by mini4
i.e : i got a parameter : $id in
http://www.aaa.com/aaa.php
i want to use $id in another site
http://www.bbb.com/bbb.php
what should i do?
any suggestion will be appreciated. Thx.

Re: How can i transfer a parameter from one site to another one?
Posted: Thu Oct 23, 2008 2:24 am
by papa
An easy way is to use GET.
site a submits id and the url to site b will be
http://www.bbb.com/bbb.php?id=$id
Re: How can i transfer a parameter from one site to another one?
Posted: Thu Oct 23, 2008 2:29 am
by aceconcepts
Also, if it's not obvious, use ACTION in your form declaration.
Re: How can i transfer a parameter from one site to another one?
Posted: Thu Oct 23, 2008 7:40 pm
by mini4
Thanks for your replies.
I didn't describe my problem correctly.
Anyway, I have solved the problems in another way.