Page 1 of 1

from my form to another website form

Posted: Wed Apr 22, 2009 2:55 pm
by cryptobacid
Hello,

First of all, I would like to thank you for taking some time to help me out.
I am really new to PHP, and the current situation I am being confronted with is as follows:

1)- I have the first form from which I take some data.
2)- on the server side I have some variables (passwords, usernames) that I have already created in another website, and which I am in need of.
3)- Now, I need to use the information gotten from the first form and the data that I have gotten from my database, and send them through the form of the website.

How can I do that?

Thank you very much for your help

Crypto

Re: from my form to another website form

Posted: Wed Apr 22, 2009 11:00 pm
by reinerlee
You may pass the variable via URL

such as http://a.com/abc.php?user=abc&pass=123

but this may leads to security leak...

or you can use AJAX calling to 2 forms...