hi... total newbie... using PHP... i'm trying to sort the following $rs = $dbc->execute("SELECT * FROM Entry order by $sort");
using the $sort from a form...
<input type="text" sort="sort">
can I do that? - if so - how?
When you use the "order by" clause, what comes after it is a column name. then if you also follow that by ASC or DES it chooses ascending or descending. I beleive by default it is desecending