I am trying to place padding for the table so that it looks good. but how?
index.php
<table border="0" width="300px">
<tr style="background-color:#ede6c9; color: black;">
<td>
<?php
// How can we help
$result = mysql_query("SELECT * FROM `static_page` WHERE post_id='27'") or die(mysql_error());
echo '<td>';
while ($data = mysql_fetch_array($result)){
$isi = $data['isi_berita'];
echo '<h2>'.$data['judul'].'</h2><br><br>';
echo substr($isi, 0, 1000).'<br>';
}
?>
</td>
</tr>
</table>