? ??????????????????????????????????????? ????Easy Install Instructions:???1. Copy the Code??2. Log in to
your Blogger account and go to "Manage Layout" from the Blogger Dashboard??3. Click on the "Edit HTML" tab.??4. Delete the code already in the "Edit Template" box and paste the new c BLOGGER TEMPLATES AND TWITTER BACKGROUNDS ?

Jumat, 11 September 2009

pak welly 4

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: