Skip to content
Advertisement

How can I make buttons where I can choose a word from an array for a hangman game

I’m trying to create a hangman game for a school project and I am stuck. So I have an array of words and I want the player to pick one of these words so a the other can try to guess the letters/word.

Something like this: Example

This is the words array:

JavaScript

I don’t know if this might help but this is the rest of my code:

JavaScript

I thought of making buttons in a different PHP file but really can’t think of where I should start. Does anyone have tips for me or could show me how I can continue?

Thanks in advance!

Advertisement

Answer

One method is using a form and post your chosenword to the server. In this example first the form is shown. When it is submitted, the game will init:

JavaScript
User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement