when you load a page, you can know what order you are using ...
all you have to do is change the link of this text to desc instead of asc.
ex :
let's give an exemple :
you have a page called display, it can show names and emails in order either ASC or desc
links should be :
display.php?orderby=name&orderasc=asc
display.php?orderby=email&orderasc=desc
just test :
use this code for each place you need to put asc or desc in the a href.
if($orderby==email) {
if($orderasc=='asc') echo "desc";
else echo "asc";
}
i hope it's clear enough.