Skip to content

Instantly share code, notes, and snippets.

@ombak
Last active May 29, 2020 14:54
Show Gist options
  • Select an option

  • Save ombak/2f80f88e35c7be98618820a919cc3fe1 to your computer and use it in GitHub Desktop.

Select an option

Save ombak/2f80f88e35c7be98618820a919cc3fe1 to your computer and use it in GitHub Desktop.
<?php $text = 'Hello world!'; ?>
<html>
<head>
<title>Contoh Short Tag</title>
</head>
<body>
//...tidak menggunakan Short Tag
<?php echo $text; ?>
//...menggunakan Short Tag
<?=$text?>
</body>
</html>
/* outputnya akan sama text 'Hello world!'
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment