Pemrograman Web Dasar Pertemuan 8 Web Server, Hosting, Basic PHP Syntax, PHP Echo and Print Statements
SERVER LOKAL Server Lokal
MENGAKSES SERVER Mengakses Server Server Location Computer
Mengakses Server MENGAKSES SERVER Computer / Server Location
WEB HOSTING Web Hosting
PHP Syntax <?php ....... ?> <html> <head> <title> PHP </title> </head> <body> <?php .......... ?> </body> </html>
Echo and Print Same but different Echo bisa menampilkan lebih banyak string dalam satu echo Print menampilkan satu string
Echo <?php echo “PHP pertama ”,”Kalimat 1 ”,”Kalimat 2 ” ; ?>
Print <?php print “PHP pertama” ; print “Kalimat 1”; print “kalimat 2”; ?>
Statement <?php //menampilkan statement echo “Ini kalimat 1” ; /*menampilkan statement lebih dari satu baris */ echo “Ini kalimat 2”; ?>
SEKIAN