“Cómo agregar PHP a HTML” Código de respuesta

Cómo agregar el archivo php en html

!DOCTYPE html
<html>
  <body>
  <?php
  Here you go!
  ?>
  </body>
</html>
Rick Astley

Cómo agregar PHP a HTML

<!DOCTYPE html>
<html>
<head>
<title>How to put PHP in HTML- Date Example</title>
</head>
<body>
<div>This is pure HTML message.</div>
<div>Next, we’ll display today’s date and day by PHP!</div>
<div>
Today’s date is <b><?php echo date('Y/m/d') ?></b> and it’s a <b><?php echo date(‘l’) ?></b> today!
</div>
<div>Again, this is static HTML content.</div>
</body>
</html>
thecodeteacher

Respuestas similares a “Cómo agregar PHP a HTML”

Preguntas similares a “Cómo agregar PHP a HTML”

Más respuestas relacionadas con “Cómo agregar PHP a HTML” en PHP

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código