A PHP script start with <?php and ends with ?>
Sebuah skrip PHP dimulai dengan <?php dan berakhir dengan tanda ?>
example :
<?php
// php code goes here
// kode php berada disini
?>
// php code goes here
// kode php berada disini
?>
Here is an example of a simple php file. the php script uses a build in function called "echo"
to output the text "Hello every one!" to a web page.
Berikut ini adalah contoh file php. pada skrip php menggunkan sebuah fungsi yang disebut "echo"
untuk mengeluarkan output teks " hello every one" pada halaman web.
<?html
<head>
<title>My first php page</title>
</head>
<body>
<?php
echo "hello every one !";
?>
</body>
</html>
<head>
<title>My first php page</title>
</head>
<body>
<?php
echo "hello every one !";
?>
</body>
</html>
Information : PHP statements end with semicolons (;)
Informasi : pernyataan php diakhiri dengan tanda semicolons (;)
alternative
alternatively, we can include php in the HTML <script> tag.
cara alternativ, kita dapat memasukkan php didalam html <script> tag
<html>
<head>
<title>my first php page </title>
<?head>
<body>
<script language ="php">
echo "hello every one !";
</script>
</body>
</html>
<head>
<title>my first php page </title>
<?head>
<body>
<script language ="php">
echo "hello every one !";
</script>
</body>
</html>
Howerer,the latest version of PHP removes support for <script language="php">tags. As such, we recommend using <?php ?> exclusively.
bagaimana bisa, versi terbaru PHP menghilangkan dukungan untuk
<script language="php">tags. Karena itu, kami sarankan untuk menggunakan <?php ?> khusus.
<script language="php">tags. Karena itu, kami sarankan untuk menggunakan <?php ?> khusus.
0 Comments