Hey, I'm making a Program, and i want it to Connect to a Webpage that will contain the username and passwords/emails and if the username & Password is there then login, How can i do this? i'm not too good at this Part of it all.
Printable View
Hey, I'm making a Program, and i want it to Connect to a Webpage that will contain the username and passwords/emails and if the username & Password is there then login, How can i do this? i'm not too good at this Part of it all.
It all depends on what web page it is. Can you post the URL?
The Webpage will just be formatted like this
ID, username, email, password
ID, username, email, password
ID, username, email, password
ID, username, email, password
ID - Member Number.
Either HTML or PHP, Whichever is easyer and faster for this stuff
Just need help to get that info and register that info? for new user
Do you need to do this against a form? Submit it?
What language are you using?
I'm in VB6 or 2008, I want the User to fill in some Textbox's with details, then when they click submit..if the user pass is in the webpage and its a user then login.//
Ok, just to clarify...
The webpage has a list of valid usernames/passwords/emails, etc.
When someone logs in on your program, your program checks to see if the username/password they entered is on that webpage.
If it is, they are logged in.
Is that correct?
The best way would be to setup a PHP file on the website. And you pass it a username/password like this:
http://www.mysite.com/login.php?user...sword=PASSWORD
Then the PHP page looks up that USERNAME and PASSWORD in the database. If it is there, it prints something like "Valid login" on the page, otherwise, "Invalid login".
This is more secure than just having a list of valid logins in public view on a webpage.
This is also pretty easy to setup. Does your server support PHP and MySQL?