Just a quick question. I want to post what is in the database but if the field is empty then i want it to say "No Date" else post the date in the table. At the moment my code only shows the "No Date" even when I know there is a date it should be showing. Here is my code
while($row = mysql_fetch_array($result))
if(empty($_REQUEST['dtFirstContactSt'])) {
echo "<td>" . "No Date </td>";
} else {
echo "<td>" .$row['dtFirstContactSt']. "</td>";
}