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
from my form to another website form
Moderator: General Moderators
-
cryptobacid
- Forum Newbie
- Posts: 1
- Joined: Wed Apr 22, 2009 2:49 pm
Re: from my form to another website form
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...
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...