Yesterdayโs English Word Guessing Game Primer Tutorialโs โEnglish Word Guessing Gameโ suited one player. Today, we allow the user to set the number of players to โฆ
- each nominated player plays within an HTML iframe element with an overall HTML table element within an HTML body element โฆ meaning โฆ
- until tomorrowโs work, it is โdog eat dogโ as to who controls which playerโs textbox has the focus โฆ but โฆ
- scoring is asynchronous
- until tomorrowโs work, the use of the tab character to tab out of a textbox clicks the โCorrect?โ button to go off to assess that playerโs answer
<?php
$score=0;
$goes=0;
$blurb='';
$dblurb="Score: 0/0";
$totalj=0;
$fortyeight="48";
$fortyeighti="";
$fortyeightj="";
$ob="";
$sh3="";
$aic="Am I Correct?";
if (isset($_GET['fortyeight'])) {
$fortyeight=$_GET['fortyeight'];
$fortyeighti="<input type=hidden name=fortyeight value='" . $fortyeight . "'></input>";
$fortyeightj="&fortyeight=" . $fortyeight;
$aic="Correct?";
$ob=" onblur=\" if (this.value.trim() != '') { document.getElementById('subm').click(); } \" ";
$sh3=" style='display:none;'";
}
if (isset($_GET['numplayers'])) {
$preifs="<html>
<head><title>What Is The English Word - RJM Programming - February, 2022</title>
</head><body style='background-color:yellow;'><table style='width:100%;' border=20><tr><th colspan=2>Player</th></tr><tr><th>Number</th><th>Game</th></tr></table></body></html>";
for ($ih=1; $ih<=$_GET['numplayers']; $ih++) {
$preifs=str_replace("</table>", "<tr><td style=text-align:center;>" . $ih . "</td><td><iframe src='./what_is_the_english_word.php?fortyeight=24' style='width:100%;height:200px;'></iframe></table>", $preifs);
}
echo $preifs;
exit;
}
?>
โฆ the idea of the โfortyeightโ code is to reduce the font size in order to fit in more player iframe display into the one shared screen, with the user interfacing code being โฆ
<?php echo โ
<h3" . $sh3 . ">RJM Programming <a title='How many players?' style='cursor:pointer;text-decoration:underline;' onclick=\" var hm=prompt('How many players?','1'); if (hm == null) { hm=''; } if (hm.trim().replace('1','') != '') { location.href=document.URL.split('?')[0].split('#')[0] + '?fortyeight=24&numplayers=' + encodeURIComponent(hm); } \">-</a> February, 2022</h3>
โ; ?>
โฆ for thechanged what_is_the_english_wordphpโs English
Word Guessing Game.
Previous relevant English Word Guessing Game Primer Tutorial is shown below.
Ever so simple! Is that what you want in a Word Game? We like that, but we also like to learn words that might be new to us. How about a โฆ
- English word game โฆ
- based on Linux or unix or macOS dictionary list โฆ
- randomly choosing โฆ
- word length between 5 and 12
- a letter in word
- that letter position in word
- and a clue, thanks to https://crossword-solver.io/clue/
โฆ basis for our word game, today? Well, itโs just โfirst draftโ time for what_is_the_english_wordphpโs English
Word Guessing Game, but we think you might like to try it?!
If this was interesting you may be interested in this too.
If this was interesting you may be interested in this too.