Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 3

Basic PHP Syntax

<!DOCTYPE html>
<html>
<body>
<h1>My first PHP page</h1>
<?php
echo "Hello World!";
?>
</body>
</html>

PHP Variables

<?php
$txt = "Hello world!";
$x = 5;
$y = 10;
?>

Global Variable

GET
POST
SESSION
COOKIES

The PHP echo Statement

<?php
echo "<h2>PHP is Fun!</h2>";
echo "Hello world!<br>";
echo "I'm about to learn PHP!<br>";
echo "This ", "string ", "was ", "made ", " dengan beberapa parameter.";
?>

PHP Data Types


1. String
<?php
$x = "Hello world!";
$y = 'Hello world!';
echo $x;
echo "<br>";
echo $y;
?>

2. Integer

<?php
$x = 1;
$y = 2;
echo $x.$y;
?>

PHP Arithmetic Operators

<?php
$x = 10;
$y = 6;
echo $x + $y; (TAMBAH)
echo $x - $y; (KURANG)
echo $x * $y; (KALI)
echo $x / $y; (BAGI)
?>

PHP if...else...elseif Statements


if (condition) {
  code to be executed if condition is true;
} else {
  code to be executed if condition is false;
}
BUATLAH TAMPILAN SEPERTI DI BAWAH INI MENGGUNAKAN BOOTSTRAP

You might also like