Mega Code Archive

 
Categories / Php / Language Basics
 

HTML and PHP together

<html>  <head>  <title>HTML and PHP together</title>  </head>  <body>  <h1 align=center>  <?php  print "Welcome";  ?>  </h1>  </body>  </html>