Posts Details

Here is a detailed
explaination on this course

Php Tutorials

Php / Php Tutorials

Combining HTML with Php by just displaying a text to the user.

DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Documenttitle>
head>
<body>
 
  //Executing Our First Php Code To Dis A Text To The User.
     echo "Hello User";
     //Where the echo signifies display or print.
   ?>
body>
html>


Leave a comment