I have been working on a support system where users can enter in a question for staff to answer about the server, my question is, how can I list all the rows in a table?
Would it be possible using a scroll as a container and a text list?
something maybe even to get all rows SELECT * FROM Support then a for loop with like
PHP Code:
with(Text_List){
for(temp.indx = 0; temp.indx < this.data.size(); temp.indx ++){
addrow(indx, data[indx]);
}
}
Maybe a better question is how would I add it all to an array?