i have script like this
echo "<p><LEFT>DATA PENDUDUK BERDASARKAN DATABASE KEPENDUDUKAN</LEFT></p>";echo "<table border='1'>
<tr>
<th>NAMA</th>
<th>NIK</th>
<th>JENIS KELAMIN</th>
<th>TEMPAT LAHIR</th>
<th>TANGGAL</th>
<th>AGAMA</th>
<th>PEKERJAAN</th>
<th>ALAMAT</th>
<th>AYAH</th>
<th>IBU</th>
<th>HAPUS</th>
</tr>";
while($row = mysql_fetch_array($result))
{
echo "<tr>";
echo "<td>" . $row['nama'] . "</td>";
echo "<td>" . $row['nik'] . "</td>";
echo "<td>" . $row['ajk'] . "</td>";
echo "<td>" . $row['t_lahir'] . "</td>";
echo "<td>" . $row['tgl'] . "</td>";
echo "<td>" . $row['agama'] . "</td>";
echo "<td>" . $row['pekerjaan'] . "</td>";
echo "<td>" . $row['alamat'] . "</td>";
echo "<td>" . $row['ayah'] . "</td>";
echo "<td>" . $row['ibu'] . "</td>";
echo "<td><input type="checkbox" name="hapus" value="ON"></td>"; [COLOR="Red"][B] i want put checkbox in here, but i have blank screen[/B][/COLOR]
echo "</tr>";
echo "</table>";
}
mysql_close($connect);
what kind script that can put there....
thanks