Universal snippet
unknown
html
5 years ago
255 B
10
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...