Data is on top of table instead of in it
Data is on top of table instead of in it
Hi, Does anyone know why this wouldnt work ?, the data is above the table in a line instead of being in it, the table just says no data is available ?
[code]
<?php
echo '';
echo '';
echo '';
echo 'Email Template Name';
echo 'Email Template Message';
echo 'Edit';
echo 'Delete';
echo '';
echo '';
$sql = "SELECT * FROM hqfjt_chronoforms_data_addemailtemplate";
$result = mysql_query($sql) or die(mysql_error());
while ($row = mysql_fetch_assoc($result)) {
echo '';
echo $row['emailformname']; // emailformname is a col name
echo '';
echo '';
echo $row['emailformmessage']; // emailformmessage is a col name
echo '';
}
echo '';
echo '';
echo '';
echo '';
echo ' Name';
echo 'Business Name';
echo 'Edit';
echo 'Delete';
echo '';
echo '';
echo '';
echo '';
echo '';
?>
[/code]
[code]
<?php
echo '';
echo '';
echo '';
echo 'Email Template Name';
echo 'Email Template Message';
echo 'Edit';
echo 'Delete';
echo '';
echo '';
$sql = "SELECT * FROM hqfjt_chronoforms_data_addemailtemplate";
$result = mysql_query($sql) or die(mysql_error());
while ($row = mysql_fetch_assoc($result)) {
echo '';
echo $row['emailformname']; // emailformname is a col name
echo '';
echo '';
echo $row['emailformmessage']; // emailformmessage is a col name
echo '';
}
echo '';
echo '';
echo '';
echo '';
echo ' Name';
echo 'Business Name';
echo 'Edit';
echo 'Delete';
echo '';
echo '';
echo '';
echo '';
echo '';
?>
[/code]
This discussion has been closed.
Replies
Allan