This is a discussion on "some type of member login/register system" within the Web Page Design section. This forum, and the thread "some type of member login/register system are both part of the Design Your Website category.
|
|
|
|
|
![]() |
||
some type of member login/register system
|
||
| Notices |
![]() |
|
|
LinkBack | Thread Tools |
|
#1
|
|||
|
|||
|
some type of member login/register system
im sure you probly get tons of questions like this and i dont really know anything about it. this might even be in the wrong section. sorry.
im making this website for one of my friends band and they like to edit whats on it with stuff like new gig dates and news. they dont know anything about websites and im afraid theyd mess up the site if i give them the password to write new stuff. so i was wondering if there was like a log in system were they could make a new blog or section on the site when they wanted and they could edit it. i cant spend any money and if its to complicated then never mind they can just email it and ill change it but it would be cool i think. any help or suggestions. but if its not free then never mind. i found some sites from google and they deal with databases. i know nothing about them but i found a site that offers free ones or something. i even downloaded this hole login system thing but im clueless. any help. |
|
|
|
#2
|
|||
|
|||
|
Re: some type of member login/register system
What u need is PHP or ASP depending what you host accepts.
|
|
#3
|
|||
|
|||
|
Re: some type of member login/register system
Hey, thanks umm my host is brinkster and i use the free educational package and it says it supports ASP 3.0 and ASP.NET. so what can i start to do. maybe there is another post on this forum with all the information. not sure. ill look around but any help would be great.
|
|
#4
|
|||
|
|||
|
Re: some type of member login/register system
what your wanting to do is fairly simple...
do u have any knowledge of asp? if so we can skip a step.. |
|
#5
|
||||
|
||||
|
Re: some type of member login/register system
A web "content management system" would make it easy for them to update the content in their site.
Alternately, if you have no money (and don't mind below average site design), you may consider one of the "website in 3 easy steps" solutions provided by NetSol.com, GoDaddy.com, etc. |
|
#6
|
|||
|
|||
|
Re: some type of member login/register system
sorry i dont know anything about asp
|
|
#7
|
|||
|
|||
|
Re: some type of member login/register system
Then you can start learning
|
|
#8
|
|||
|
|||
|
Re: some type of member login/register system
maybe it would be an idea to make an article, build your own blogg....webforumz style...
If this is gona help people, ill do one. in both php and asp perhaps? let me know some thoughts on this....i could have one up for monday morning if its going to be a big help... |
|
#9
|
|||
|
|||
|
Re: some type of member login/register system
yes that would be helpful. umm asp becuase thats what i can use for free but php would be helpful to others to.
|
|
#10
|
|||
|
|||
|
Re: some type of member login/register system
ill throw somthing together...
|
|
#11
|
|||
|
|||
|
Re: some type of member login/register system
Good
|
|
#12
|
|||
|
|||
|
Re: some type of member login/register system
I think Fantistico has a script that may work for you, your web host may offer it.
|
|
#13
|
|||
|
|||
|
Re: some type of member login/register system
so hows it coming along? or is it already done.
|
|
#14
|
|||
|
|||
|
Re: some type of member login/register system
not even started it...not enuf hours in the day...
|
|
#15
|
|||
|
|||
|
Re: some type of member login/register system
oh lol ok. ive been trying to use the b2evolution thing i found with google.. but its not working. so ill wait for you. but no hurry
|
|
#16
|
|||
|
|||
|
Re: some type of member login/register system
just so you know, ive been making some nice progress...
|
|
#17
|
||||
|
||||
|
Re: some type of member login/register system
I just sat down and wrote an article, then when I tried to add it to the article section kept getting a "Suspiscious Content" error.
So here it is, a php/mysql member system: Creating a Simple Login System with PHP and MySQL Most interactive websites nowadays would require a user to log in into the website’s member system in order to authenticate the user and display customised views for them. A basic login system usually consists of 2 parts: 1. A module that allows a user to register their username and password. 2. A module that authenticates the user when they log in. A simple system is easily created with PHP and MySQL. Module 1 – Registration Module 1 is typically implemented using a simple HTML form that contains 4 fields and 2 buttons: 1. A username field 2. A password field 3. A password reminder 4. An email address field 5. A Submit button 6. A Reset button For this example, the form is included in a file named register.html.
The following code registers the user in the database. It connects to the MySQL database and inserts a record into the table used to store the registration info.
Module 2 – Authentication FOr the user to then login to the website they will have to provide their username and password for the system to authenticate them. This is done through a simple HTML form. This HTML form contains 2 fields and 2 buttons: 1. A username field 2. A password field 3. A Submit button 4. A Reset button For this exmaple, the file will be called authenticate.html. When the user has filled in all the fields, the authenticate.php page is called when the user clicks on the Submit button.
And that's it, a simple user registration/login system that can be used for any site running PHP. It can be further improved to include a profile editor for the user to change their details and can also be setup to use sessions to store details across pages. You should also include some sort of validation for the html forms, to ensure users enter correct data and no security holes are opened up. Last edited by Tim356; Jan 1st, 2006 at 05:48. |