Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the first language to have inline commands in HTML code?

Tags:

I'm learning PHP. The PHP has inline commands in HTML code to produce dynamic HTML output.

<div>
    <?php echo 'hello world'; ?>
</div>

In the Java and .NET world, there are similar syntaxes to have commands in HTML.

What is the first language or platform to have this kind of syntax, having dynamic code embedded in HTML code and generating dynamic HTML code?

like image 469
Morgan Cheng Avatar asked Mar 06 '10 09:03

Morgan Cheng


People also ask

What is the code element in HTML?

The HTML <code> element is used to define a piece of computer code. The content inside is displayed in the browser's default monospace font.

How do you change the language of a website in HTML?

In a nutshell Always add a lang attribute to the html tag to set the default language of your page. If this is XHTML 1. x or an HTML5 polyglot document served as XML, you should also use the xml:lang attribute (with the same value). If your page is only served as XML, just use the xml:lang attribute.

Is HTML coding?

HTML is not a programming language. It's a markup language. In fact, that is the technology's name: HyperText Markup Language.


1 Answers

First releases of

  • ADP 1994 (Greg Hewgill)
  • Server Side Includes 1994 (Thilo)
  • PHP 1995
  • ASP 1996
  • JSP 1999
like image 164
4 revs Avatar answered Sep 27 '22 23:09

4 revs