Page 1 of 1

Football Website

Posted: Sun Aug 29, 2010 10:10 am
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.

Re: Football Website

Posted: Sun Aug 29, 2010 1:48 pm
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?

Re: Football Website

Posted: Mon Aug 30, 2010 9:54 am
by ste_512
It's a HTML table, I just change the data myself.

Re: Football Website

Posted: Thu Sep 02, 2010 12:14 pm
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.