So I've seen a lot of this:
"SELECT t.`data`, s.`data` FROM `sqlData` t, `sqlData` s"
and I wanted to see if I could incorporate that into my sql queries....but I'm not sure how to manipulate it in PHP. I'm not even sure what this sort of query is called....
So my question is, first, what is it called? Second...how would I pull all the data and display it on my page? It seems that the standard mysql_query() and mysql_fetch_array() stuff doesn't work the same for this (I keep getting an invalid result message). Is there something special about this query?
Just getting the name of the query can at least get me on the right trail, but examples of code to manipulate this would be fantastic. As always, thanks for your help.