lat1.php
<html>
<head>
<style type=text/css>
b {font-size:18pt;color:pink};
</style>
</head>
<body>
<form method=post action=lat2.php>
<pre>
<center>
<b> Toyz-Online.com</b>
Form Pemesanan Pre Order
</center>
Nama Pemesan : <input type=text name=nama>
Barang : <select name=barang>
<?php
$brg=array(1=>"MG-Qarta","MG-KRDouble","MG-SonGoKu");
for($x=1;$x<=3;$x++)
{
echo"<option value=$brg[$x]>$brg[$x]";
}
?>
</select>
Jumlah Pesan : <input type=text name=jumlah>
<input type=submit value=Order>
</pre>
</form>
</body>
</html>
lat2.php
<?
$nama=$_POST['nama'];
$barang=$_POST['barang'];
$jumlah=$_POST['jumlah'];
if($barang=="MG-Qarta")
{
$hrg=600000;
}
else
{
if($barang=="MG-KRDouble")
{
$hrg=500000;
}
else
{
$hrg=450000;
}
}
$t=$hrg*$jumlah;
echo"<pre>";
echo"Nama : $nama<br>";
echo"Barang : $barang<br>";
echo"Jumlah Pesan : $jumlah<br>";
echo"Harga per item : $hrg<br>";
echo"Total : $t<br><br>";
echo"<a href=lat1.php>Thank You</a>";
echo"</pre>";
?>
Nie script lat2.php yang sama bedanya nie pake function
<?
$nama=$_POST['nama'];
$barang=$_POST['barang'];
$jumlah=$_POST['jumlah'];
function harga($barang)
{
if($barang=="MG-Qarta")
{
$hrg=600000;
}
else
{
if($barang=="MG-KRDouble")
{
$hrg=500000;
}
else
{
$hrg=450000;
}
}
return $hrg;
}
$a=harga($barang);
$t=$a*$jumlah;
echo"<pre>";
echo"Nama : $nama<br>";
echo"Barang : $barang<br>";
echo"Jumlah Pesan : $jumlah<br>";
echo"Harga per item : $a<br>";
echo"Total : $t<br><br>";
echo"<a href=lat1.php>Thank You</a>";
echo"</pre>";
?>
Tidak ada komentar:
Posting Komentar