Kamis, 06 Juni 2013

Senin, 03 Juni 2013

Salah Satu Penggunaan PHP


Contoh penggunaan PHP salah satunya membuat table yang dibuat buku tamu, tapi masih banyak lagi penggunaan PHP, dan inilah salah satunya


<style>
table {
background: #006;
border-color: #0F6;
color: #FFF;
cursor: pointer;
font-size: 16px;
}
</style>
<?php
//phpinfo();
echo "Halo ini dari php";
?>
<form action="login.php"
method="post">
<table width="244" 
height="108" 
border="2"
align="center">
  <tr>
    <td colspan="3"><div align="center"><strong>Autentikasi</strong></div></td>
  </tr>
  <tr>
    <td>user</td>
    <td>:</td>
    <td><input type="text" name="username" id="username" /></td>
  </tr>
  <tr>
    <td>passwords</td>
    <td>:</td>
    <td><input type="password" name="userpass" id="userpass" /></td>
  </tr>
  <tr>
    <td>&nbsp;</td>
    <td colspan="2"><input type="submit" name="supmet" id="supmet" value="proses" /></td>
    </tr>
</table>
</form>