Thanks for the info.
I have managed to sort the columns by ascending through using:
$order = $_GET["order"];
if (!$order=="")
{
$query = $query." order by $order ";
}
if (mysql_num_rows($result) > 0) {
echo "<table cellpadding=10 border=1>";
echo "<tr><td><a href='products.
php?order=Name&letter=$initialLette r'>Name</a></td>".
I used this as I could not find the information in phpMyAdmin.
Is there a way in which I can adapt this coding to make it do both ascending & descending?
Thanks again.