Cara Membuat Website dengan Mudah - File: index.php

Artikel berikut ini merupakan sambungan dari artikel sebelumnya, dan pada bagian ini kita akan membuat file index.php, silahkan copy dan simpan kode dibawah ini:

<?php
include('cek-login.php');
?>
<html>
<head>
<title>Belajar PHP</title>
</head>

<body>
<h1>Form Input Data</h1>

<?php
if (!empty($_GET['message']) && $_GET['message'] == 'success') {
echo '<h3>Berhasil menambah data!</h3>';
}

echo "Selamat Datang <strong>".$_SESSION['username']."</strong>";
?>

<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>
        <td>Password</td>
        <td>:</td>
        <td><input type="password" name="password" maxlength="20" required="required" /></td>
        </tr>
    <tr>
        <td>Fullname</td>
        <td>:</td>
        <td><input type="text" name="fullname" maxlength="100" required="required" /></td>
        </tr>
    <tr>
        <td>Email</td>
        <td>:</td>
        <td><input type="email" name="email" required="required" /></td>
        </tr>
    <tr>
        <td>Agama</td>
        <td>:</td>
        <td><input type="text" name="agama" required="required" /></td>
        </tr>
    <tr>
        <td>Nomor HP</td>
        <td>:</td>
        <td><input type="text" name="no_hp" maxlength="14" required="required" /></td>
        </tr>
        <tr>
        <td align="right" colspan="3"><input type="submit" name="submit" value="Simpan" /></td>
        </tr>
    </tbody>
</table>
</form>

<a href="view.php">Lihat Data</a> ||  <a href="logout.php">Logout</a>

</body>
</html>

Kita lanjutkan artikel selanjutnya dengan bagaimana Cara Membuat Website dengan Mudah - File: insert.php

TUTORIAL LENGKAPNYA DAPAT DIUNDUH DI LINK INI:
Cara Membuat Website Dengan Mudah
Cara Membuat Website dengan Mudah - File: cek-login.php
Cara Membuat Website dengan Mudah - File: config.php
Cara Membuat Website dengan Mudah - File: delete.php
Cara Membuat Website dengan Mudah - File: edit.php
Cara Membuat Website dengan Mudah - File: index.php
Cara Membuat Website dengan Mudah - File: insert.php
Cara Membuat Website dengan Mudah - File: login.php
Cara Membuat Website dengan Mudah - File: logout.php
Cara Membuat Website dengan Mudah - File: otentikasi.php
Cara Membuat Website dengan Mudah - File: view.php
Cara Membuat Website dengan Mudah - File: update.php

Mari Belajar Teknologi Informasi

0 Response to "Cara Membuat Website dengan Mudah - File: index.php"

Post a Comment