I have looked through the exisiting posts and found twosuggestiong to this problem. I have tried them but they don't seem to work. My situation is: I have a MySQL table with two columns INPUT and OUTPUT. I need to get both of them, place them in and array and display both columns COMBINED in an ORDERED list ASCENDING.
I have tried...
1) Creating a temp table and using INSERT INTO temp (combined) SELECT input,output etc.. this didn't seem to work.
2) Creating an array. I believe this to be the proper way however I can't seem to get the PHP syntax right.
Any ideas and/or code snippets?
Thanks!