I am new to html and php here. I have set up a game where a php file takes the scores and names and puts into mysql db. The php file also selects the top ten entries in the db table and stores them in an array.
What I simply cannot workout (my research leads me to more and more questions I cant answer) is how to actually get the php array displayed on a separate html page that loads my game. I just need conceptual guidance really - how does the html page request the php array and which file will arrange the ouput as a table?
Edit:
Will the answer in this SO question work for me? If I get my HTML page to include the php file, how can I display the table? Would I use echo in the html page under php tags? Or would I not have access to the php array variable that way?