I installed a new WAMP on my computer (before I used XAMPP - everything was good as I remember). My problem is the php output tag (<?= ?>) which is not working (in the browser when I click on show sourcecode it is appears exactly in the file - so it is not processed...)
Am I wrong something? Is there an option in php.ini to turn on this tag? I need this tag.
Code how I tried:
<?php
$examples = "Some text...";
?>
<!DOCTYPE html>
<html>
<head>
<title>Examples</title>
</head>
<body>
<h1>Examples</h1>
<ul>
<?= $examples ?>
</ul>
</body>
</html>