the "\" is a safety feature that ensures that certain codes are escaped to prevent problems - php has the magic_quotes function set up in the distribution
to show the messges without the "\" use [man]stripslahes[/man]
for the order problem, change the sql statement to sort ASC as the default, if not included is DESC
select * from table order by date ASC
hth