PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!
you cant use that talbe for any membership site...well you can but only for newsletters and stuff..as it says in the comments.
you would need a beter table.
somethinglike:
ID INT
username CHAR 32
password CHAR 32
email CHAR 200(should be enough?)
to start with.
once you have the table set up you need to use php sesions to allows users to login. there are tons of tutorials for this. try google for [google]php login tutorials[/google].
btw, when you say "i know php" do you mean you can make scripts etc or do you know as in "yes i know it exists" .
when you say "i know php" do you mean you can make scripts etc or do you know as in "yes i know it exists"
i looked at fusion's site, it allready uses phpbb, i dont understand why he does not just use the portal buitl into phpbb like this site does, im sure you can find modules to do what ever you want.
well if you know php my suggestion is to make a registration script that automaticly posts the user info to a mysql database, the for login it would be rather standard, user enters username and p-word and compare it to the database(i'd suggest using md5 to hash the passwords in the database, then to compare what the user entered to whats in the database all you would have to do is md5(); what the user entered for a p-word and compare it to the database, but if you know php you should have no problem with this much, then i'm sure you could figure out what to do for statistics