Hi Jayapps, I'd look for a PHP or other server side login really if you are looking for something secure, this page gives a straight forward way of doing this amongst a tutorial for a basic content management system
__________________
Challenge media Please login or register to view this content. Registration is FREE
__________________
Chris. ->> Please login or register to view this content. Registration is FREE <<-
A foolish consistency is the hobgoblin of little minds
Thought for today:- Is SEO the only industry where all the cowboys are Indians?
Don't mean to hijack but I find this very interesting. How do you capture the login and password from the HTML form and check in the database?
When the user submits the form the data is sent to the server. From there you need to use a server side script to process the data. How you process the data is going to depend on the language or framework you are using.
Don't mean to hijack but I find this very interesting. How do you capture the login and password from the HTML form and check in the database?
On the receiving page you could call a POST call (since the form's method is POST) like this:
$login_name = $_POST['login'];
That will grab the value of the input with name="login".
__________________ Check out my Please login or register to view this content. Registration is FREE or my Please login or register to view this content. Registration is FREE !
It's simple until you start getting into the subtleties of what it takes to develop a system that not only works but is secure. I think this is especially true when it comes to PHP because there are so many bad examples out there.
Hi, i need the HTML coding to make a login system for my iweb site
Hi,
what is the back-end coding that validates login form and what database you are going to use for storing login information will you encrypt password if so what is encryption algorithm your planned to use please answer this so that i can provide perfect coding for your login form
__________________
Chris. ->> Please login or register to view this content. Registration is FREE <<-
A foolish consistency is the hobgoblin of little minds
Thought for today:- Is SEO the only industry where all the cowboys are Indians?
Hi Jayapps, I'd look for a PHP or other server side login really if you are looking for something secure, this page gives a straight forward way of doing this amongst a tutorial for a basic content management system
thank you for this, just in time
__________________ Please login or register to view this content. Registration is FREE