Mobile app version of vmapp.org
Login or Join
Martha676

: Pairing teams up for competition So i visited this site http://fantasy.premierleague.com/ and in this when i go to the fixtures, i was thinking, how did the developer designed this so that the

@Martha676

Posted in: #Php #WebsiteDesign

So i visited this site fantasy.premierleague.com/ and in this when i go to the fixtures, i was thinking, how did the developer designed this so that the new fixtures get generated on its own?
For eg if i am having 10 teams(say), and i am competing them in some competition(say football) then how do i design my thing so that after each week a new set of fixtures is generated, shall i change the page after every week, and change it manually, or how do i do it. Say, i am having all my fixtures in hand, i.e. i know every weekly fixture, then how do i design the whole thing. It will not be nice to edit the page every time i need to change the fixtures.
I am still a beginner, who have practiced a bit of PHP, so kindly help!

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Martha676

1 Comments

Sorted by latest first Latest Oldest Best

 

@Nimeshi995

High Level answer:

You'll build a program that runs on the server to generate the matches and keep track of the outcomes. The html page will then change dynamically at load time based on the program running in the background that's keeping track of the matches. You can store all of the information in a MySQL database. The PHP program will execute the logic and ferry the information from the database to the end-user. You can accomplish this using PHP/MySQL.

Start down the path, then ask specific programming questions as stackoverflow.com as paulmorriss suggests.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme