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!
Hi,
Hopefully someone can help me out with this since I've been going nuts all day. I have one registration form that collects all the users information. It sends this form to a php script. I now need to take all those variables and send them, to 4 other .php scripts. (changing the names of the variables for each script. So is there a way to get a .php script to send the variables just like a form would? I have "Noahs Classifieds", "PHPauction", "phpBB2", and my own login on my site. I am trying to create one registration page for all of them. Hopefully I am going in the right direction if not could someone please point me in it.
I am fairly new to PHP and don't want to hack the programs that much. I could send all my data to each of the My_SQL databases, but I can't figure out how they encrypt the passwords. This is driving me nuts since it is the last thing that is keeping me from launching my website
Include is imo the way to go... However i am running every form and script from my main index.php. Actually my index.php is the tree to decide what to do on a page.. Once you have that, all you can use is includes or requires..
Ps for passwords use $encrypted=md5($password) and you have your passwords encrypted... However remember that if you check a user password at login, you should encrypt the pw be4 firing a query on your database...