Here is what I have:
$non_result = Select_Query("SELECT
SUM(non_system_01) as non_jan,
SUM(non_system_02) as non_feb,
SUM(non_system_03) as non_mar,
SUM(non_system_04) as non_apr,
SUM(non_system_05) as non_may,
SUM(non_system_06) as non_jun,
SUM(non_system_07) as non_jul,
SUM(non_system_08) as non_aug,
SUM(non_system_09) as non_sep,
SUM(non_system_10) as non_oct,
SUM(non_system_11) as non_nov,
SUM(non_system_12) as non_dec,
location_id
FROM Location WHERE acct_id = '$acct_id'
GROUP BY acct_id
ORDER BY location_id", $link);
From the results of this query I would like to move from field to field not by rows returned. It only returns one row anyway.
I have tried the standard while loop but since there is only one row I get the error "Cant Jump to row".
I tried mysql_field_seek but still don't get the results I'm looking for.
Thanks