Jump to content

[SOLVED] Heading Lines For Table


refiking

Recommended Posts

How do I add a heading for each column in this script and how can I insert a vertical line in between each column?

 

<?php
include 'cnt.php';
$query = mysql_query('SELECT bfn, bln, cfn, cln, loan_id, status FROM Loans') or
         die('Error: '.mysql_error());

echo '<table>';
while($row = mysql_fetch_assoc($query)) {
    echo "<tr><td>{$row[bln]}, {$row[bfn]}</td><td>{$row[cln]}, {$row[cfn]}</td><td>{$row[loan_id]}</td><td>{$row[status]}</td></tr>";
}
echo '</table>';
?>

Link to comment
https://forums.phpfreaks.com/topic/84362-solved-heading-lines-for-table/
Share on other sites


<?php
include 'cnt.php';
$query = mysql_query('SELECT bfn, bln, cfn, cln, loan_id, status FROM Loans') or
        die('Error: '.mysql_error());

echo '<table>';
while($row = mysql_fetch_assoc($query)) {
echo "<tr><td>adam</td><td>john</td><td>julie</td><td>Alex</td></tr>";   
echo "<tr><td>{$row[bln]}, {$row[bfn]}</td><td>{$row[cln]}, {$row[cfn]}</td><td>{$row[loan_id]}</td><td>

}
echo '</table>';
?>

 

This is a php forum not a html one. The above may work

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.