Please copy and paste a paragraph into the space provided and press submit.
<?php
// code
error_reporting(E_ALL); // set error reporting to all
echo('<h1>Welcome to my word game!</h1>');
$step = isset($_POST['step']) ? $_POST['step'] : 0;
$userstring = isset($_POST['userstring']) ? $_POST['userstring'] : '';
$guess = isset($_POST['guess']) ? $_POST['guess'] : 0;
// Create guess arrays with place-holder values
$guessarrayone = array('_','_','_','_','_');
$guessarraytwo = array('_','_','_','_','_');
$guessarraythree = array('_','_','_','_','_');
$guessarrayfour = array('_','_','_','_','_');
$guessarrayfive = array('_','_','_','_','_');
$answerarray = array('_','_','_','_','_');
$turns = array(
"turn1" => $guessarrayone,
"turn2" => $guessarraytwo,
"turn3" => $guessarraythree,
"turn4" => $guessarrayfour,
"turn5" => $guessarrayfive
);
if ($step == 0) {
echo('<p>Please copy and paste a paragraph into the space provided and press submit.</p>');
?>
<form action="wordletest.php" method="POST">
<input type="hidden" name="step" value="1">
<textarea name="userstring" rows="5" cols="50"></textarea>
<button type="submit">Submit Text</button>
</form>
<?php
} elseif ($step == 1) {
// Remove characters that might be added to word to make them five letters long
$cleanedstring = preg_replace('/[,.:;\'"\/?!]/', ' ', $userstring);
// Convert text into an array of words (splitting by whitespace)
$words = preg_split('/\s+/', trim($cleanedstring));
$wordlewords = array();
// Title
echo "<h3>Five-letter words:</h3>";
// Check for five-letter words
foreach ($words as $word) {
if (strlen($word) == 5) {
$wordlewords[] = $word;
}
}
$wordchoice = $wordlewords[array_rand($wordlewords)];
$wordchoice = strtolower($wordchoice);
?>
<h1>My Wordle Like Game</h1>
<p>A five-letter word from the text you have entered has been selected. Now you have to try and figure out what it is. Enter your guess and press submit. If a letter from your word is in the selected word it will appear in the array. If the position of the letter is also correct it will be capitalized. Good Luck!</p>
<?php
// Printing guess arrays
echo implode(", ", $guessarrayone) . "<br>";
echo implode(", ", $guessarraytwo) . "<br>";
echo implode(", ", $guessarraythree) . "<br>";
echo implode(", ", $guessarrayfour) . "<br>";
echo implode(", ", $guessarrayfive) . "<br>";
// Convert the wordlewords array and wordchoice to a serialized string
$serializedWordleWords = serialize($wordlewords);
$serializedWordChoice = htmlspecialchars($wordchoice);
?>
<form action="wordletest.php" method="POST">
<input type="hidden" name="step" value="2">
<input type="hidden" name="guess" value="<?php echo $guess + 1; ?>">
<input type="hidden" name="wordlewords" value="<?php echo urlencode($serializedWordleWords); ?>">
<input type="hidden" name="wordchoice" value="<?php echo urlencode($serializedWordChoice); ?>">
<input type="text" name="word" maxlength="5" minlength="5" pattern="[A-Za-z]{5}" title="Enter exactly 5 letters" required>
<button type="submit">Submit Word</button>
</form>
<?php
// Testing purposes
echo('<pre>');
print_r($wordlewords);
print_r($wordchoice);
print_r($guess);
echo('</pre>');
} elseif ($step == 2) {
// Get the values passed via the form submission
$guessword = $_POST["word"]; // Fix: Change "guess" to "word" to capture the user's input guess
$wordlewords = unserialize(urldecode($_POST['wordlewords'])); // Get wordlewords back as an array
$wordchoice = urldecode($_POST['wordchoice']); // Get wordchoice back as a string
// Show the passed values for debugging
echo('<pre>');
print_r($wordlewords);
print_r($wordchoice);
echo('</pre>');
// Check if guess is less than or equal to 5
if ($guess < 5) {
$guessasarray = str_split($wordchoice);
$wordchoicearray = str_split($guessword);
for ($i = 0; $i < count($guessasarray); $i++) {
$position = array_search($guessasarray[$i], $wordchoicearray);
$letter = $guessasarray[$i];
if (in_array($letter, $wordchoicearray) AND $position === $i) {
$answerarray[$i] = strtoupper($guessasarray[$i]);
} elseif (in_array($letter, $wordchoicearray)) {
$answerarray[$i] = $guessasarray[$i];
}
}
// Update the guess array
$turns["turn".($guess)] = $answerarray;
}
// Print the guess arrays again
echo implode(", ", $turns["turn1"]) . "<br>";
echo implode(", ", $turns["turn2"]) . "<br>";
echo implode(", ", $turns["turn3"]) . "<br>";
echo implode(", ", $turns["turn4"]) . "<br>";
echo implode(", ", $turns["turn5"]) . "<br>";
echo implode(", ", $answerarray);
// Convert the wordlewords array and wordchoice to a serialized string
$serializedWordleWords = serialize($wordlewords);
$serializedWordChoice = htmlspecialchars($wordchoice);
// Display the next form
?>
<form action="wordletest.php" method="POST">
<input type="hidden" name="step" value="2">
<input type="hidden" name="guess" value="<?php echo $guess + 1; ?>">
<input type="hidden" name="wordlewords" value="<?php echo urlencode($serializedWordleWords); ?>"> <!-- Pass wordlewords -->
<input type="hidden" name="wordchoice" value="<?php echo urlencode($serializedWordChoice); ?>"> <!-- Pass wordchoice -->
<input type="text" name="word" maxlength="5" minlength="5" pattern="[A-Za-z]{5}" title="Enter exactly 5 letters" required>
<button type="submit">Submit Word</button>
</form>
<?php
} else {
// If the guess limit (5) is reached, end the game
echo "<h3>Game Over! You've reached the maximum number of guesses.</h3>";
}
?>
<?php
include('../includes/footer.php');
?>