BLOGGER TEMPLATES AND TWITTER BACKGROUNDS »

Senin, 07 September 2009

ke satu
<?php
$dir = opendir("./");
while ($baca_file = readdir ($dir))
{
echo "$baca_file", "\n";
}
closedir($dir);
?>

ke dua

<?php
$cfile = "datapengunjung.dat";
$fh = fopen($cfile, "r+");
if (!$fh)}
die("
Gagal membuka file $cfile.");
}
$s = fgets($fh, 6);
$hitung = (int) $s;
$hitung = $hitung +1;
$hitung = str_pad($hitung, 6);
rewind($fh);
fwrite($fh, $hitung);
echo "andan pengunjung ke $hitung";
fclose($fh);
?>

ke tiga

<?php
$kalimat = "belajar PHP";
$jumlah=strlen($kalimat);
print "variable string \$kalilmat = $kalimat
;
print "kalimat '$kalimat' diatas jumlah karakternya adalah $jumlah ";
?>

ke empat

<?php
$a = 2;
$b = 15;
print '\$a = $a dan \$b
";
if ($a >Sb)
{
print "Nilai a lebih besar dari nilai b";
}
else
{
print "Nilai a lebih kecil dari nilai b";
}
?>

ke lima

<?php
header("content-Type:image/jpeg");
$background=@imagecreate(100,100);
$kuning=imagecolorallocate($background,250,250,300);
$hitam=imagecolorallocate($background,0,0,0);
imagearc($background,50,50,50,50,0,360,$hitam);
imageJPEG($background);
imagedestroy($background);
?>

ke enam

<?php
$tanggal=date("Ymd",time());
print "Tanggal hari ini adalah $tanggal";
?>

ke tujuh

<?php
$waktu = date ("H:i:s",time());
print "waktu sekarang adalah $waktu;
?>

0 komentar: