menghide kolom

Robert James M · Mar 30, 2013
salam,sebelumnya entah judulnya bener atau salah.

misalkan di tabel database terdapat 7 nama, misalkan a,b,c,d,e,f,g. nah kemudian si user diminta mengisi minimal 1 dan maksimal 7. nah di insertnya saya udah bisa, cuma masalahnya pas di tampilkan saya menggunakan ini
 <?php
  include "koneksi.php";

  $data       = mysql_query("select * from nama");
  $hasil      = mysql_fetch_array($data);
  $a 		  = $hasil['a'];
  $b 		  = $hasil['b'];
  $c 		  = $hasil['c'];
  $d 		  = $hasil['d'];
  $e 		  = $hasil['e'];
  $f 		  = $hasil['f'];
  $g 		  = $hasil['g'];
?>     
        <table class="table" cellspacing="0" width="100%" id="x">
            <thead>
                <tr>
				<th class="black-cell"><span class="loading"></span></th>
					<th scope="col" style="text-align:center;">No</th>
                    <th scope="col" style="text-align:center;"><?php echo $a ?></th>
                    <th scope="col" style="text-align:center;"><?php echo $b ?></th>
                    <th scope="col" style="text-align:center;"><?php echo $c ?></th>
                    <th scope="col" style="text-align:center;"><?php echo $d ?></th>
                    <th scope="col" style="text-align:center;"><?php echo $e ?></th>
					<th scope="col" style="text-align:center;"><?php echo $f ?></th>
                    <th scope="col" style="text-align:center;"><?php echo $g ?></th>
                    <th scope="col" style="text-align:center;" class="table-actions">Actions</th>   
                </tr>
            </thead>
<?php

kalo pas semua diisi tidak masalah, cuma andai user hanya isi 2 / 3, maka selebihnya akan kosong. nah saya mau nanya biar pas ditampilin sesuai banyak yang dia masukan.
Silahkan login untuk menjawab!