I am not able to sort my data according to date
<a href="#"><?php 
                $sql="select link from links ORDER by 'date' DESC";
                mysql_select_db('zealiant');
                $retval = mysql_query( $sql, $conn );
                if(! $retval ) {
                    die('Could not get data: ' . mysql_error());
                }
                while($row = mysql_fetch_array($retval, MYSQL_ASSOC)) {
                    echo "{$row['link']} <br>";
                }
                mysql_close($conn);
            ?></a>
 
    