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.
Football Website
Moderator: General Moderators
- Jonah Bron
- DevNet Master
- Posts: 2764
- Joined: Thu Mar 15, 2007 6:28 pm
- Location: Redding, California
Re: Football Website
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?
When you say league and fixtures tables, do you mean an HTML table, or a database table?
Re: Football Website
It's a HTML table, I just change the data myself.
- Jonah Bron
- DevNet Master
- Posts: 2764
- Joined: Thu Mar 15, 2007 6:28 pm
- Location: Redding, California
Re: Football Website
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.