Praktikum Pemrograman Web Muhamad Malik.M, S.T.
Menampilkan Teks dengan PHP
Menampilkan Tanggal dengan PHP
Contoh Variabel
Contoh Boolean
Contoh Boolean
Contoh Tipe Data
Contoh Tipe Data
Contoh Tipe Data
Contoh String
Contoh Predefined Variabel
Contoh Array (List)
Contoh Array (List)
Contoh Form Next Kode Program
Form.php (Lengkapi oleh anda) <form method=get action=“form-a.php"> <input type="text" name="nama"> <input type="radio" name="jk" value=“Value">Value <input type="checkbox" name="hobi[]" value=“Value">Value <select name="prop"> <textarea name="psn" rows="5" cols="20"> <input type="submit" value="Kirim">
form-a.php <html><head><title> FORM HANDLER </title> </head> <body> Terima kasih untuk pengisian data Anda <br/> Nama <?=$_GET["nama"]?> <br/> Jenis Kelamin <?=$_GET["jk"]?> <br/> Propinsi <?=$_GET["prop"]?> <br/> Hobi <br/> <?php foreach ($_GET["hobi"] as $nilai) echo "-- $nilai <br/> \n"; ?> Pesan <br/> <?=$_GET["psn"]?> </body></html>
Contoh Form Lanjutan
Contoh Form Lanjutan
Query String
Query String Aksi