compiler
compiler copied to clipboard
ehhh
Greet Me!
<div class="greeting">
<?php
if (!empty($name)) {
echo "<p>Hello, $name!</p>";
}
?>
</div>
</div>
<script>
// Simple JavaScript to focus on the input field when the page loads
document.querySelector('input[name="name"]').focus();
</script>