Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

HTML Forum


You are currently viewing our HTML Forum as a guest. Please register to participate.
Login



Post a Project »

Find a Professional HTML Freelancer!

Find a Freelancer to help you with your HTML projects

FREE Outsourcing eBook!

Reply
Old 11-05-2010, 01:05 PM Login system
Junior Talker

Posts: 1
Name: James Newman
Trades: 0
Hi, i need the HTML coding to make a login system for my iweb site
jayapps is offline
Reply With Quote
View Public Profile
 
 
Register now for full access!
Old 11-05-2010, 05:44 PM Re: Login system
Novice Talker

Posts: 4
Trades: 0
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
challengemedia is offline
Reply With Quote
View Public Profile
 
Old 11-05-2010, 05:57 PM Re: Login system
lynxus's Avatar
Awesomeo-Maximo

Posts: 1,618
Location: UK
Trades: 1
If you know PHP, You can check out my tutorial ( on my blog under my name <-- )

However, It is quite intense, So if your not too good with php or html, The above link may be better.
__________________

Please login or register to view this content. Registration is FREE

Please login or register to view this content. Registration is FREE


Please login or register to view this content. Registration is FREE

Please login or register to view this content. Registration is FREE


lynxus is offline
Reply With Quote
View Public Profile Visit lynxus's homepage!
 
Old 11-05-2010, 08:10 PM Re: Login system
chrishirst's Avatar
Missing! presumed drunk.

Posts: 42,380
Name: Chris Hirst
Location: Blackpool. UK
Trades: 0
This being the HTML forum, the code is:
HTML Code:
<form method="post" name="login" method="">
User Name:<input type="text" name="login"><br>
Password: <input type="password"><br>
<input type="submit" value="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?
chrishirst is offline
Reply With Quote
View Public Profile Visit chrishirst's homepage!
 
Old 11-06-2010, 08:50 AM Re: Login system
Experienced Talker

Posts: 27
Trades: 0
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?
__________________

Please login or register to view this content. Registration is FREE
from as low as $10
kineticsem is offline
Reply With Quote
View Public Profile Visit kineticsem's homepage!
 
Old 11-06-2010, 09:18 AM Re: Login system
NullPointer's Avatar
Will Code for Food

Posts: 2,815
Name: Matt
Location: Irvine, CA
Trades: 0
Quote:
Originally Posted by kineticsem View Post
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.
__________________

Please login or register to view this content. Registration is FREE
|
Please login or register to view this content. Registration is FREE
|
Please login or register to view this content. Registration is FREE
|
Please login or register to view this content. Registration is FREE

Last edited by NullPointer; 11-06-2010 at 09:27 AM..
NullPointer is online now
Reply With Quote
View Public Profile Visit NullPointer's homepage!
 
Old 11-06-2010, 11:23 AM Re: Login system
Physicsguy's Avatar
404 - Title not found

Posts: 919
Name: Scott Kaye
Location: Ontario
Trades: 0
Quote:
Originally Posted by kineticsem View Post
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
!
Physicsguy is offline
Reply With Quote
View Public Profile
 
Old 11-08-2010, 01:32 PM Re: Login system
Novice Talker

Posts: 11
Trades: 0
Quote:
Originally Posted by kineticsem View Post
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?
It's simple. Use PHP
__________________

Please login or register to view this content. Registration is FREE
craig.johnson is offline
Reply With Quote
View Public Profile
 
Old 11-08-2010, 01:40 PM Re: Login system
NullPointer's Avatar
Will Code for Food

Posts: 2,815
Name: Matt
Location: Irvine, CA
Trades: 0
Quote:
Originally Posted by craig.johnson View Post
It's simple. Use PHP
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.
__________________

Please login or register to view this content. Registration is FREE
|
Please login or register to view this content. Registration is FREE
|
Please login or register to view this content. Registration is FREE
|
Please login or register to view this content. Registration is FREE
NullPointer is online now
Reply With Quote
View Public Profile Visit NullPointer's homepage!
 
Old 11-10-2010, 02:39 AM Re: Login system
Banned

Posts: 143
Name: maheshadodis
Location: USA
Trades: 0
Quote:
Originally Posted by jayapps View Post
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
maheshadodis is offline
Reply With Quote
View Public Profile
 
Old 11-10-2010, 12:39 PM Re: Login system
chrishirst's Avatar
Missing! presumed drunk.

Posts: 42,380
Name: Chris Hirst
Location: Blackpool. UK
Trades: 0
Quote:
Originally Posted by craig.johnson View Post
It's simple. Use PHP
Or ASP, ASP.NET, Python, Perl, ColdFusion etc etc
__________________
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?
chrishirst is offline
Reply With Quote
View Public Profile Visit chrishirst's homepage!
 
Old 11-11-2010, 05:45 AM Re: Login system
Junior Talker

Posts: 1
Name: Dynamosh
Trades: 0
Quote:
Originally Posted by challengemedia View Post
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


Please login or register to view this content. Registration is FREE
Dynamosh is offline
Reply With Quote
View Public Profile
 
Old 11-11-2010, 05:56 AM Re: Login system
edgray's Avatar
Super Moderator

Latest Blog Post:
Frantic
Posts: 4,264
Name: Sugarcane Gray
Location: Hell, Southern Spain
Trades: 0
Quote:
Originally Posted by jayapps View Post
Hi, i need the HTML coding to make a login system for my iweb site
iWeb isn't going to be able to do that. Read people talking about it here: http://www.mac-forums.com/forums/web...-log-iweb.html

You might be able to code something externally and slip it in using a widget or something.

Another discussion on the topic here: http://hintsforums.macworld.com/showthread.php?t=104465
__________________

Please login or register to view this content. Registration is FREE
- a project in video and sound.

Please login or register to view this content. Registration is FREE
"Absolute Rubbish, an insult to the blues." - NME.

Please login or register to view this content. Registration is FREE
- Come use our agency :)
edgray is offline
Reply With Quote
View Public Profile Visit edgray's homepage!
 
Reply     « Reply to Login system
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML



Page generated in 2.36106 seconds with 12 queries