Quote:
Originally Posted by xXziroXx
Could anyone explain how the following commands works, preferably with an example?
PHP Code:
sortcolumn - integer
sortmode - string
sortorder - string
|
Well, I don't know what
sortcolumn does, but:
For
sortmode, it can be either 'ascending' or 'descending', e.g
PHP Code:
sortMode = "ascending";
This is also probably the same for
sortorder
And, per what cbkbud said, you need to call
sort() for it to actually sort.