right, ok thanks
I got it displaying, but the problem is...the dates for each row are the same, when I have submitted them at different times
basically, the general concept is
emails submitted to Mysql
Content manager to delete, view, etc records
in the table showing all records, I want to add the date and time that record was submitted
so what I did, is place a timestamp and named the field "TimeDate"
Now Im using this to grab the data from it...
<?php $u_date = strtotime($row["TimeDate"]); $my_date = date("d/m/y G:i:s", $u_date);?><?php echo "$my_date" ?>
thats displaying - 01/01/70 0:59:59
arg!