Well,

I have a site that I'm working on called "fragblast gaming"

Well, what it has is that each person can submit a review of a game, and multiple people can submit reviews of the same game.

I have that part working, but hte problem is that is generated a text file for each review, and adds onto the text file.

What I want to do is have it stored in a MySQL database, and allow the reviewer to edit/delete their review.

So I figured i can change how the reviews are stored

Before i had it like
Code:
reviews
    pc
      game1.txt
      game2.txt
but now i changed it to
Code:
reviews
    pc  
      game1
          index.txt (includes other reviews)
          1.txt
          2.txt
etc

but now the problem is....how do i store the password and etc?

i included everything etc using "include()", not sure if thats the best way.

so databases are my solution (i guess)

i'm a horrible db programmer...in fact, i dotn know the first thing.

so can someone help me out?

or if someone wants to do it (i imagine itd be pretty simple, i finished my includes() thingy up in a few days), that would be great. all credit would goto you

thanks alot
nabeel