jika anda ingin di dengar maka berbahsalah yang baik
La takhof wala tahzan ma dumtu ana ma'akum....
Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.
Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.
Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.
Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.
Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.
jika anda ingin di dengar maka berbahsalah yang baik
$con = mysql_connect(”localhost”,”root”,”bchr”);
if (!$con)
{
die(’Could not connect: ‘ . mysql_error());
}
// *********** untuk membuat database
// if (mysql_query(”CREATE DATABASE my_db”,$con))
// {
// echo “Database created”;
// }
// else
// {
// echo “Error creating database: ” . mysql_error();
// }
// ******* untuk memanggil database
mysql_select_db(”my_db”, $con);
// ******* Create table in my_db database
// $sql = “CREATE TABLE person
// (
// personID int NOT NULL AUTO_INCREMENT,
// PRIMARY KEY(personID),
// FirstName varchar(15),
// LastName varchar(15),
// Age int
// )”;
// mysql_query($sql,$con);
// **** insert data
$sql=”INSERT INTO person (FirstName, LastName, Age)
VALUES
(’$_POST[firstname]‘,’$_POST[lastname]‘,’$_POST[age]‘)”;
if (!mysql_query($sql,$con))
{
die(’Error: ‘ . mysql_error());
}
echo “1 record added”;
// ***** untuk melihat dengan hasil $result variabe
// $result = mysql_query(”SELECT * FROM person”);
// while($row = mysql_fetch_array($result))
// {
// echo $row['FirstName'] . ” ” . $row['LastName'];
// echo “
”;
// }
// ***** untuk melihat juga mysql_fetch array function
$result = mysql_query(”SELECT * FROM person”);
echo “
Firstname | Lastname |
---|---|
” . $row['FirstName'] . “ | ”;” . $row['LastName'] . “ | ”;
// *** System filter hanya nama tertentu yg kelihatan
// $result = mysql_query(”SELECT * FROM person
// WHERE FirstName=’Bagas’”);
// while($row = mysql_fetch_array($result))
// {
// echo $row['FirstName'] . ” ” . $row['LastName'];
// echo “
”;
// }
// ***** order by
// $result = mysql_query(”SELECT * FROM person ORDER BY age”);
// while($row = mysql_fetch_array($result))
// {
// echo $row['FirstName'];
// echo ” ” . $row['LastName'];
// echo ” ” . $row['Age'];
// echo “
”;
// }
// **** update data
// mysql_query(”UPDATE Person SET Age = ‘36′
// WHERE FirstName = ‘Peter’ AND LastName = ‘Griffin’”);
// **** menghapus data
// mysql_query(”DELETE FROM Person WHERE LastName=’Griffin’”);
mysql_close($con);
?>
crop.php
// temtukan lebar, tinggi, file yang mau dicrop, format nama file, dan penempatan foto setelah di crop
function cropImage($nw, $nh, $source, $stype, $dest) {
$size = getimagesize($source); // ukuran gambar
$w = $size[0];
$h = $size[1];
switch($stype) { // format gambar
case 'gif':
$simg = imagecreatefromgif($source);
break;
case 'jpg':
$simg = imagecreatefromjpeg($source);
break;
case 'png':
$simg = imagecreatefrompng($source);
break;
}
$dimg = imagecreatetruecolor($nw, $nh); // menciptakan image baru
$wm = $w/$nw;
$hm = $h/$nh;
$h_height = $nh/2;
$w_height = $nw/2;
if($w> $h) {
$adjusted_width = $w / $hm;
$half_width = $adjusted_width / 2;
$int_width = $half_width - $w_height;
imagecopyresampled($dimg,$simg,-$int_width,0,0,0,$adjusted_width,$nh,$w,$h);
} elseif(($w <$h) || ($w == $h)) {
$adjusted_height = $h / $wm;
$half_height = $adjusted_height / 2;
$int_height = $half_height - $h_height;
imagecopyresampled($dimg,$simg,0,-$int_height,0,0,$nw,$adjusted_height,$w,$h);
} else {
imagecopyresampled($dimg,$simg,0,0,0,0,$nw,$nh,$w,$h);
}
imagejpeg($dimg,$dest,100);
}
$gambar = "gambar1.jpg";
$gambar_crop = "gambar1crop.jpg";
// jalankan fungsi crop gambar
// lebar, tinggi, file yang di crop, format gambar, nama file setelah di crop
cropImage(225, 165, "$gambar", 'jpg', "$gambar_crop");
print "Image sebelum di crop :
";
print "Image setelah di crop :
";
?>
Selamat mencoba.........