• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Making an HTML website with a database.. need help

ibex333

Diamond Member
PLEASE READ THE UPDATE BELOW. The main post is no longer relevant.


Hello.

I hope I'm posting this in the right place. If not, please move this.

Me and my friend made a basic website for our "corporation" in an online game. It is basically used as a forum for the members of our corp.

Our corp is set up as a military state where everyone has assigned roles, ranks, and even badges and medals.

Now we need to set up a database, such that every member can come in, type in his/her username in the search box, and be presented with a screen that contains all his/her relevant info, rank, and the picture of a corresponding badge/medal. Nothing more, nothing less.

Problem is, I don't know how to do that!
I don't even know the basics of creating a simple HTML website.

Is it possible for me to accomplish the task described above within 1-2 weeks? Can I just read some simple tutorial and do this fast? I don't need anything fancy or flashy. I only need a simple site with a database for our members.

Can anyone point me in the right direction, and tell me where I can find some tutorials online that will help me?

Thanx in advance for your help.


Update:


It turns out that I might not necessarily need a database. I spoken to my friend and, all we really need is a page that does the following:

User comes in and is presented with "Enter your name" window. He enters his name, and on the next page he sees all badges and ranks that we have in the corp with checkboxes next to them. The user checks the badges, medals and ranks that he currently has. When that is done, he clicks next and it presented with a page that shows the results of his selection..

Something like this:

User X

Rank: X

Badges: X (with pictures of the corresponding badges)

Medals: X (with pictures of the corresponding medals)

After the user has completed all the steps, the final page is saved, so that everyone in the corp can see it whenever they please.


It's the same thing people have on a forums when a user has to select checkboxes next to:

do you drink?
do you smoke?
Are you married?

and in the end, his profile shows:

Doesn't Drink
Smokes
Not married.

 
If the game is somewhat popular you might want to check around on google to see if someone else has already done it.
 
You're probably going to want to get someone who knows what they're doing to do this for you or help you.

If you're learning inclined however, you could do this from a set of tutorials in a few days to a week probably.

http://www.tizag.com

Youll need:
-HTML for formatting and display
-Server side scripting language (PHP or ASP)
-Database (SQL or Access)
 
Look into PHP and MySQL for code to interact with a database from a WebPage.
 
Javascript to create dynamic links that just go to playername.html (where playername is the name of the player) when you click submit. You'll have to update each HTML page but them's the breaks.
 
No. You need to store the data somewhere, be it a database or text file. Neither HTML nor javascript can interact with a database or create a text file. The easiest way to do this would be with PHP and a MySQL database or a text file.
 
Back
Top