Monday, August 31, 2009

.tUgaz hari Selasa 01-09-09

Pertamaaaa...

<php
$a = 2;
$b = 15;

print "\$a = $a dan \$b = $b
";

if ($a > $b)
{
print "Nilai a lebih besar dari nilai b";
}
else
{
print "Nilai a lebih kecil dari nilai b";
}
>

Keduaaaa....

< ?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);
? >

Ketigaaaaa.....

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

Keempaaaaaaatt....

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

Kelimaaaaaa.......

< ?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);
? >

Keenaaaaaaammm....

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

Ketujuuuuuuhh....

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


Alhamdulillah uDw seLesaeeee.....

No comments:

Post a Comment