PDA

View Full Version : Profiles?



Lucky13
April 16th, 2001, 20:52
Hey...I want to work on a .php script that will allow people to edit their profiles via web. I want them to be able to log in to the editing page using their name and their passwords which are already in a SQL database. Any way to do this? Thanks.

~Lucky13
Knights of Destiny Gaming Organization
http://www.kodhome.com - http://www.kodmain----------

Unknownguy
April 17th, 2001, 08:17
I am also interested in a script that would do that.

Koolguy
April 17th, 2001, 17:04
Perl, PHP, or ASP?

Lucky13
April 17th, 2001, 17:53
PHP, please

ace0
April 17th, 2001, 19:25
how do you create a member database? What is sql, and where can I get a free one (if you can)?

dony
April 18th, 2001, 07:45
ı have asked thıs questıon at the past but dıdnt fınd proper answer.
ı wıll use any scrıpt perl or php.
but do not know how.

lucifer
April 18th, 2001, 08:56
Originally posted by ace0
how do you create a member database? What is sql, and where can I get a free one (if you can)?

sql = select query language - what databases talk

mySQL is a free db - yopu need it on your server and an account set up for you


MAIN QUESTION

lots of ways to do it but you sound as though you want to do some session tracking so only allowed people can see their profile and then change it - if you don't session track then they have to give name/password twice which is crap.

not hard but takes ages to explain

depends on how secure you want it

more secure=more work

Lucky13
April 18th, 2001, 18:17
ok........so does that mean that no one knows how?

jw
April 18th, 2001, 18:24
its pretty complicated...check out devshed.com and webmonkey.com, they have some good tutorials on mysql.

lucifer
April 19th, 2001, 13:55
it can be done quite easy

too long to explain though

learn some sql

select, insert, delete, update

they are all you really need to know

learn some php

learn about session tracking

cobble a script together

good luck

atlas
April 19th, 2001, 19:51
Originally posted by lucifer

sql = select query language - what databases talk


Almost: SQL = Structured Query Language

-mk