Posts

Showing posts from September, 2014

Membuat Form dengan PHP

                 <html> <head> <title>Belajar PHP</title> </head> <body> <h1>Form Input Data</h1> <form name="input_data" action="insert.php" method="post"> <table border="0" cellpadding="5" cellspacing="0">     <tbody>         <tr>             <td>Username</td>             <td>:</td>             <td><input type="text" name="username" maxlength="20" required="required" /></td>         </tr>         <tr>       ...