kshet26 Posted June 8, 2006 Share Posted June 8, 2006 I need to seperate the values contained in a query result into seperate variables. How would I go about doing this?This is my query: $result = mysql_query("SELECT DISTINCT Bug.ixBug, Bug.sTitle, Person.sFullName, Area.sArea, Bug.dtOpened, Bug.ixPriority, Bug.ixPersonAssignedTo FROM `Bug`, BugEvent, Person, Area WHERE Area.ixArea = Bug.ixArea AND Person.ixPerson=Bug.ixPersonAssignedTo AND Bug.ixBug =BugEvent.ixBug AND Bug.ixStatus=1 AND Bug.fOpen=1 AND Bug.ixPriority =1 AND (Bug.ixProject = 2 OR Bug.ixProject = 4)") or die(mysql_error());I need to get the 7 values from each row of this query and seperate it into individual variables. I though about using a foreach() statement, but I could figure out how to do the value separation. I need them in seperate varibles so I output them to a file in specific places. Quote Link to comment https://forums.phpfreaks.com/topic/11525-need-to-seperate-values-from-query-result-into-variables/ Share on other sites More sharing options...
poirot Posted June 8, 2006 Share Posted June 8, 2006 What do you need? When you use mysql_fetch_* it will return you an array with the results, and they're organized enough for me.[a href=\"http://www.php.net/mysql_fetch_assoc\" target=\"_blank\"]http://www.php.net/mysql_fetch_assoc[/a][a href=\"http://www.php.net/mysql_fetch_row\" target=\"_blank\"]http://www.php.net/mysql_fetch_row[/a][a href=\"http://www.php.net/mysql_fetch_array\" target=\"_blank\"]http://www.php.net/mysql_fetch_array[/a]like:[code]while ($row = mysql_fetch_assoc($result)) { $ixbug = $row['ixBug']; $area = $row['sArea]'}[/code] Quote Link to comment https://forums.phpfreaks.com/topic/11525-need-to-seperate-values-from-query-result-into-variables/#findComment-43396 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.