I want to make the registration process a user name and password. I use Delphi 7. Component which can be done? (I know very little english, sorry.)
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
http request is easiest method (with GET, or POST), but preferred you’ll want to use SSL if you dont want passwords/usernames passed along to your webserver un-encrypted.
Example of using POST request:
Optionally you can write your own socket, but that will be more difficult because you’ll have to write your own listener. (Which is usually not allowed on most shared hosting plans.)