Selasa, 31 Maret 2015

The Way to write script CSS & HTML & PHP

PHP script in HTML


<html>
<head>
<title>Sample PHP insert into HTML</title> </head>
<body>
<h1>Hello </h1>

<?php  
echo "Good Night";
//sample PHP comment
?>

<p>I'm learning PHP Now</p>
</body>
</html>


HTML script in PHP


<?php
echo "<html>";    
echo "<head>";    
echo "<title>Contoh PHP disisipkan dalam HTML</title>";   
echo "</head>";
echo "<body>";
echo "<h1>Hello </h1>";
echo "Selamat malam"; //Ini contoh komentar php    
echo "<p align=\"center\">Saya sedang belajar PHP</p>";   
echo "</body>";    
echo "</html>";
?>


Link to external CSS file in PHP


<?php    
echo "<html>";    
echo "<head>";    
echo "<title>Contoh PHP disisipkan dalam HTML</title>";
echo "<link href=\"namafile.css\" rel=\"stylesheet\" type=\"text/css\" />";  
echo "</head>";    
echo "<body>";    
echo "<h1>Hello </h1>";    
echo "Selamat malam"; //Ini contoh komentar php    
echo "<p align=\"center\">I'm learning PHP</p>";    
echo "</body>";    
echo "</html>";
?>

CSS script in PHP


<?php    
echo "<html>";    
echo "<head>";    
echo "<title>Contoh PHP disisipkan dalam HTML</title>";
echo "<style type=\"text/css\">";
echo ".contohcss1 { text-align:center; }";
echo ".contohcss2 { text-align:left; }";
echo "</style>";    

echo "</head>";    
echo "<body>";    
echo "<h1>Helllo </h1>";    
echo "Selamat malam"; //Ini contoh komentar php    
echo "<p align=\"center\">Saya sedang belajar di blog zainalhakim.web.id</p>";    
echo "</body>";    
echo "</html>";
?>

source:http://www.zainalhakim.web.id/posting/cara-menuliskan-css-html-dalam-php.html

Tidak ada komentar:

Posting Komentar