from my form to another website form

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
cryptobacid
Forum Newbie
Posts: 1
Joined: Wed Apr 22, 2009 2:49 pm

from my form to another website form

Post 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
reinerlee
Forum Newbie
Posts: 3
Joined: Wed Apr 22, 2009 10:30 pm

Re: from my form to another website form

Post 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...
Post Reply