1. Asep Setiawan (09018257)
2. Faiz Nursuaedi A (09018296)
3. Siti Mutmainnah (09018265)
4. Aditia Kurniawan (09018288)
5. Wiji Hidayati (09018300)
1. Membuat Form Input menggunakan html dengan ASP
[sourcecode language="html"]
<!—coba_formradio.html> <html> <body> <form name="input" action="html_form_action.asp" method="get"> <input type="text" name="tomat">Tomat <br> <input type="text" name="apel">Apel <br> <input type="submit" value="Submit"> </form> <p> Jika tombol “submit” di-click, maka anda akan mengirimkan data yang diinputkan kepada page baru yang disebut form_action.asp. </p> </body> </html>[/sourcecode]
2. Perulangan menggunakan PHP
dengan menggunakan while
[sourcecode language="css"]
<html>
<head>
<title> While </title>
</head>
<body>
<H3> Cara 1 </H3>
<pre>
$i = 1;
while ($i <= 10) {
print $i++;
}
Hasilnya adalah :
</pre>
<?
$i = 1;
while ($i <= 10) {
print $i++;
}
?>
<H3> Cara 2 </H3>
<pre>
$i = 1;
while ($i <= 10) {
print $i;
$i++
}
Hasilnya adalah :
</pre>
<?
$i = 1;
while ($i <= 10) {
print $i;
$i++;
}
?>
</body>
</html>
[/sourcecode]
dengan menggunakan do while
[sourcecode language="css"]
<html> <body> <title> Do While </title> </head> <body> <? $i = 5; do { echo "\$i = $i <br>"; $i++; } while ($i < 5); ?> </body> </html>
[/sourcecode]
0 komentar:
Posting Komentar