Universal snippet

 avatar
unknown
html
4 years ago
255 B
7
Indexable
<?php
    $name = "Robert";
?>
<style>
    p {
        font-size: 14px;
    }
</style>
<script>
    function click_to_p() {
        alert("<?php echo $name;?>");
    }
</script>

<p onclick="click_to_p()">Your name is <?php echo $name;?></p>
Editor is loading...