This is default featured slide 1 title

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.

This is default featured slide 2 title

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.

This is default featured slide 3 title

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.

This is default featured slide 4 title

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.

This is default featured slide 5 title

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.

20130528

php script


 bio.php
proses.php



bio.php
<html>
<head><title>BIODATAKU</title>
<style type="text/css">
<!--
.style1 {
color: #00FF00;
font-family: "Times New Roman", Times, serif;
}
.style2 {font-family: Verdana, Arial, Helvetica, sans-serif}
-->
</style>
</head>
<body>
<pre>
<form Action="proses.php" method="post" name="input">
<h1 align="center" class="style1">BIODATA</h1>
<span class="style2">nama depan   :<input name="irfan" type="text" id="irfan"><br>
nama belakang:<input name="saputra" type="text" id="saputra"><br>
alamat          :<input name="alamat" type="text" id="alamat"><br>
umur            :<input type="text" name="umur"><br>
jurusan:     <input type="radio" name="Jr" value="RPL" checked>RPL<br>
                <input type="radio" name="Jr" value="TKR">TKR<br>
                <input type="radio" name="Jr" value="AK">AK<br>
mapel:       <input type="checkbox" name="PHP"value=php>PHP</span><br>
          <input type="checkbox" name="HTML"value=html>HTML<br>
          <input type="checkbox" name="VB"value=vb>VB<br>
<input type="submit"name="ok"value="ok">   <input type="reset"name="Batal"value="Batal">
</form>
</pre>
 </body>
</html>


proses.php
<?php
echo"Nama Depan     : ".$_POST['irfan']."<br>";
echo"Nama Belakang    : ".$_POST['saputra']."<br>";
echo"Alamat         : ".$_POST['alamat']."<br>";
echo"Umur             : ".$_POST['umur']."<br>";
echo"Jurusan         : ".$_POST['Jr']."<br>";
echo"Mapel             : ".$_POST['PHP'] ;
echo " ".$_POST['HTML'] ;
echo " ".$_POST['VB'];
?>