This forum is easier than google? http://lmgtfy.com/?q=buble+sort
Sounds like your table isn't normalized. I'd look into properly structuring your database. What is the actual table structure? (i.e. field names...
You can't do this with SQL, do it programmatically with php. Essentially you run your query, loop through all the records, swapping those that...
First, what a misleading title. Second, no one has any idea how big your database is going to be, especially when your description of the fields...
Set a variable equal to 1 then for each element in the array multiple that variable by it.
Your going to need a couple sub-queries on the Bids table to determine the top bid. First sub-query determines the top bid by auction: SELECT...
Couple things. First, I hope those are example names because 'table', 'field' and 'value' are reserved words and shouldn't actually be used as...
I don't understand what you mean by "would only work in the while loop". Since your extracting an unknown amount of rows from a query, you are...
Ok, this will work like you initially posted, however, if you have 2 records in your database that have the same config_name (i.e. 'language',...
Here's the problem--your myid field is text--you can't do math on text like you expect. For example, 'X100' is actually less than 'X5', and...
How do you know which row to use and when? Presumably $configs['config_name'] will contain different values and not just "English" depending on...
Have you tried hiring someone to do this for you? If not, what have you got so far? Where are you stuck?
Couple things: 1. When running an aggregate query (using a GROUP BY clause) you need to group by every field in your SELECT clause that is not...
Capitalism is very rarely illegal.
It does group like you want it too, it just represents those time frames as numbers (ReportQuarter=1 groups Jan - Mar, ReportQuarter=2 groups...
Separate names with a comma.