<?php
include('../includes/header.php');
?>
<h2>Uppercase to Lowercase</h2>
<form method="POST">
<label for="inputString">Enter Uppercase String:</label>
<input type="text" name="inputString" required>
<input type="submit" name="submit" value="Submit">
</form>
<?php
error_reporting(E_ALL);
if (isset($_POST['submit'])) {
$inputString = $_POST['inputString'];
$lowercaseString = strtolower($inputString);
echo "<h2>Result:</h2>";
echo "Original String:" . htmlspecialchars($inputString) . "<br>";
echo "Lowercase String:" . $lowercaseString . "<br>";
}
include('../includes/footer.php');
?>