compiler icon indicating copy to clipboard operation
compiler copied to clipboard

ehhh

Open HarbertSammyG opened this issue 1 year ago • 2 comments

Simple PHP App

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>

HarbertSammyG avatar Aug 27 '24 02:08 HarbertSammyG