Football Website

Ye' old general discussion board. Basically, for everything that isn't covered elsewhere. Come here to shoot the breeze, shoot your mouth off, or whatever suits your fancy.
This forum is not for asking programming related questions.

Moderator: General Moderators

Post Reply
ste_512
Forum Newbie
Posts: 9
Joined: Sun Aug 29, 2010 10:01 am

Football Website

Post by ste_512 »

Hi,

I have a online football website that I have built and run, at the moment when a team has played they email me the result and I manualy edit the league table and results table.

Is there a way that I can have a page were the team uploads the result and it atomaticly populates the league table and the fixtures table?

Cheers

Ste.
User avatar
Jonah Bron
DevNet Master
Posts: 2764
Joined: Thu Mar 15, 2007 6:28 pm
Location: Redding, California

Re: Football Website

Post by Jonah Bron »

You could create an HTML form that submits to a target page. The target page would get the fields through the $_POST variables, and then you could insert the info into the MySQL table.

When you say league and fixtures tables, do you mean an HTML table, or a database table?
ste_512
Forum Newbie
Posts: 9
Joined: Sun Aug 29, 2010 10:01 am

Re: Football Website

Post by ste_512 »

It's a HTML table, I just change the data myself.
User avatar
Jonah Bron
DevNet Master
Posts: 2764
Joined: Thu Mar 15, 2007 6:28 pm
Location: Redding, California

Re: Football Website

Post by Jonah Bron »

You really can't make a good dynamic system on top of that. Start learning about MySQL (a good place to start: http://www.w3schools.com/php/php_mysql_intro.asp), and use the MySQL table to create the HTML table when the page loads.
Post Reply