Pages

Ads 468x60px

Selasa, 03 April 2012

Program REQUIRE pada PHP

Program REQUIRE pada PHP
Contoh require1

<html>
<head>
<title>..::TUGAS REQUIRE::..</title>
</head>
<body>
<?php
$b="Saya Sedang Makan";
function eLha($teks)
{
echo("<i>$teks</i>");
}
?>
</body>
</html>

require 2

<html>
<head>
<title>..::TUGAS REQUIRE::..</title>
</head>
<body>
<?php
require("r1.php");
elha("eLha Sedang Apa ??");
{
echo("<br>");
echo($b);
}
?>
</body>
</html>

Tidak ada komentar:

Posting Komentar