PWdPB : Tugas Part 2

Tugas Part 2 : Variabel

Tugas membuat tabel dengan menggunakan variabel php.

Untuk menyimpan suatu data ke dalam variabel  harus memberikan nilai ke variabel
Contoh Penulisan Script/Syntax seperti dibawah ini :
$nama_variabel = nilai_variabel;

variabelnya :
<?php
$nama = "Corissa";
$jenis_kelamin = "Perempuan";
$umur = 16;
$nis = 202120945;
$tanggal_lahir = "8 Desember 2005";
$jurusan = "Rekayasa Perangkat Lunak";
?>

Seluruh codingan :


<style type="text/css">
    .text {
        text-align: center;
        font-family: Verdana;
        font-size: 50px;
        color: pink;
    }
    .center {
        margin-left: auto;
        margin-right: auto;
    }
</style>
<?php
$nama = "Corissa";
$jenis_kelamin = "Perempuan";
$umur = 16;
$nis = 202120945;
$tanggal_lahir = "8 Desember 2005";
$jurusan = "Rekayasa Perangkat Lunak";

echo '<div class="text">TABEL BIODATA DIRI</div>';
?>

<table class="center" border=1px cellpadding="10">
         <tr>
            <th>Biodata</th>
            <th>Isi</th>
         </tr>
         <tr>
            <td>Nama :</td>
            <td><?php echo $nama; ?></td>
         </tr>
         <tr>
            <td>Jenis Kelamin :</td>
            <td><?php echo $jenis_kelamin; ?></td>
         </tr>
         <tr>
            <td>Umur :</td>
            <td><?php echo $umur; ?></td>
         </tr>
         <tr>
            <td>NIS :</td>
            <td><?php echo $nis; ?></td>
         </tr>
         <tr>
            <td>Tanggal Lahir :</td>
            <td><?php echo $tanggal_lahir; ?></td>
         </tr>
         <tr>
            <td>Jurusan :</td>
            <td><?php echo $jurusan; ?></td>
         </tr>
      </table>


Setelah membuat coding tersebut save file ke C:\xampp\htdocs\(namafile).php
Lalu run XAMPP kemudian buka file codingan tadi melalui browser dengan mengetikkan “http://localhost/(namafile).php”

Hasil codingan :






Share this:

ABOUT THE AUTHOR

Hello We are OddThemes, Our name came from the fact that we are UNIQUE. We specialize in designing premium looking fully customizable highly responsive blogger templates. We at OddThemes do carry a philosophy that: Nothing Is Impossible

LATEST POSTS