Contoh Program:
1. Desain
Listing:
<!doctype html public "-//W3C//DTD HTML 4.0 //EN">
<html>
<head>
<title>Title here!</title>
</head>
<body>
<pre>
<form action="inputan.php" method="post">
<table width="500" border="1" left="1" top="1">
<td align="left">
Pembelian Tiket Online
Nama Pemesan : <input type="text" name="nama"> <br>
Alamat : <textarea rows=0 cols=0 name="alamat"></textarea> <br>
Kode Studio : <Select size="1" name="kode_studio"> <br>
<option> Pilih </option>
<option> Studio 1 </option>
<option> Studio 2 </option>
<option> Studio 3 </option>
</select> <br>
Jenis Kelas : <input type="radio" name="jenis_kelas" value="VVIP"> VVIP <br>
<input type="radio" name="jenis_kelas" value="VIP"> VIP <br>
Jumlah Tiket : <input type="text" name="jumlah_tiket"> <br>
Telp/HP : <input type="text" name="telp"><br>
<input type="submit" value="BELI"> <input type="reset" value="BATAL">
</table>
</form>
</body>
</html>
2. Hasil
Dengan Listing sebagai berikut:
<!doctype html public "-//W3C//DTD HTML 4.0 //EN">
<html>
<head>
<title>Title here!</title>
</head>
<body>
<pre
<?php
$nama=$_POST['nama'];
$alamat=$_POST['alamat'];
$kode_studio=$_POST['kode_studio'];
$jenis_kelas=$_POST['jenis_kelas'];
$jumlah_tiket=$_POST['jumlah_tiket'];
$telp=$_POST['telp'];
if ($jenis_kelas=="VVIP"){
$harga="1800000";}
else {
$harga="1000000";}
$total_harga=$harga*$jumlah_tiket;
echo "<Font color=Green size=5> Pembelian Tiket Online </font> <br>";
echo"<br>";
echo" Nama :$nama <br>";
echo" Alamat :$alamat <br>";
echo" Kode Studio :$kode_studio <br>";
echo" Jenis Kelas :$jenis_kelas <br>";
echo" Harga :$harga <br>";
echo" Jumlah Tiket :$jumlah_tiket <br>";
echo" Telp :$telp <br>";
echo"======================================= <br>";
echo" Total Harga :$total_harga <br>";
?> <br>
<a href="Blog.php"> Beli Lagi </a>
</body>
</html>