Welcome to my WORDLE word finder!
Copy and paste text into the text area and press submit. Five-letter words will be returned.
Please copy and paste a paragraph into the space provided and press submit.
Copy and paste text into the text area and press submit. Five-letter words will be returned.
Please copy and paste a paragraph into the space provided and press submit.
<?php
include('../includes/header.php');
error_reporting(E_ALL); // set error reporting to all
?>
<?php
// code
error_reporting(E_ALL); // set error reporting to all
echo('<h1>Welcome to my WORDLE word finder!</h1>');
echo('<p>Copy and paste text into the text area and press submit. Five-letter words will be returned.</p>');
$step = isset($_POST['step']) ? $_POST['step'] : 0;
$userstring = isset($_POST['userstring']) ? $_POST['userstring'] : '';
if ($step == 0)
{
echo('<p>Please copy and paste a paragraph into the space provided and press submit.</p>');
?>
<form action="stringgame.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
$cleanedsting = preg_replace('/[,.:;\'"\/?!]/', ' ', $userstring);
// Convert text into an array of words (splitting by whitespace)
$words = preg_split('/\s+/', trim($cleanedsting));
echo "<h3>Five-letter words:</h3>";
// Check for five-letter words
foreach ($words as $word) {
if (strlen($word) == 5) {
echo strtoupper($word);
?>
<br><br>
<?php
}
}
// Display the original input
echo "<h3>Original Input:</h3>";
echo($userstring);
}
?>
<?php
include('../includes/footer.php');
?>