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!
I am a newbie (it shows) to php, and need help to set up a security login interface for a website that I am creating. It needs to be able to send an e-mail to the respondant giving the user his login and password (hopefully randomly generated password).
Use mail function to mail the user or use phpMailer
For generating random passwords, either generate your own method to randomly select some characters and then put it as a string or use shuffle and then implode it to return the string
and your going to want to store all of the information into a mysql database. there are many ways to do what you want, search google for some tutorials.