Hi i might be in the wrong section but im wanting to create a table that allows the user to input the results in a small form and when the user submits the result, the result then automatically updates the table, ive done this with spread sheets but im struggling to find a way to do one on the internet.
This is for a freind of mine, she is wanting a results table as she is creating a pool league and the last time she created one she had to manually input the scores into the tables and it was a nightmare as i helped her out. I don't know what she is using but I know HTML a little PHP and some JavaScript. I am quite a newbie to coding and apoligize if I dont make much sense.
heres the link to the last one that we did: http://homepage.ntlworld.com/margaret.smith06/2v2/
The repbox isnt the one we created i dont believe, and it goes through the myleague setup i believe, if we are going to have to verify the table then that wouldnt be of any use to us. We would also need a table consisting of all the teams which is unknown at this time but i could easily change that to suit when they are all signed up. This is for a pool doubles competition that is for an online game.
therattler - This is a pretty simple application of PHP with a MySQL database backend. I would recommend looking up how to do MySQL connections with PHP. All you'll need is a user table and a results table. When users login, let them have access to a form where they can input the results of their matches into the results table.
To display the results, just pull out the data from the results table on your backend and display it however you want it.