I'm learning PHP. The PHP has inline commands in HTML code to produce dynamic HTML output.
<div>
<?php echo 'hello world'; ?>
</div>
In Java and .NET world, there are similar syntax to have commands in HTML.
I'm wondering what is the first language or platform have this kind of syntax. Having dynamic code embedded in HTML code and generating dynamic HTML code.