For the most part, they were all useful. But I've noticed, they only covered how to do a statement like this:
SELECT value FROM row
That serves the point for something small, but my query is, how do I make it use a "wildcard"(not sure on proper termonolgy) value.
For instance, the SQL string would look like this:
SELECT * FROM row
So I could assign variables to corrispond with the different rows and throw them in a while() loop until the query finishes and all necessary data is displayed on a page.
I could do it using the method above, but that would require, 5 times the amount of code I should need to use <.<