My Question is simple: which programming language do you recommand me to do what I want below.
I have an html page and some javascript. On the html page you see a card game and some actions of the card. In my javascript I hardcoded for the moment the cards of every players. In the future I don't want hardcoded decks. I want to get the info of which players has which cards in his hand from a mysql database.
I don't think javascript (or jquery) is the way to do it. What do you recommand me to use?
PHP. While it is possible to access your database withjavascriptorjQuery, it is NOT recommended. You can combine thejQueryandPHPusingajax, which will probably do what you require.