kopander Posted July 6, 2006 Share Posted July 6, 2006 Hi, new to this. Wondering if it is possible to enter figures from a mysql database into an array, which can be used on php functions? Example: so I have a function such as:[code]for ($i=0; $i<count($Values); $i++){ if ($Values[$i]>$max){$max=$Values[$i];} }[/code]Which gets the values from a fixed array:[code]$Values=array(120,190,130,155,150);[/code]Now i'm trying to get the data from a database. But the problem I cant figure out how to change everything so it uses the data from the database without changing the functions.I was wondering if there is a way to get the data from the database, and write it into an array so that it will be the same as a variable, i.e I get something like:[code]$Values=array(120,190,130,155,150,.......);[/code]which can be used by the current fuctions. Make any sense ??? Quote Link to comment https://forums.phpfreaks.com/topic/13865-sql-data-into-an-array/ Share on other sites More sharing options...
effigy Posted July 6, 2006 Share Posted July 6, 2006 MySQL has a a MAX() function to do this for you. If you still need to get the data into an array, see the tutorials on working with MySQL here. Quote Link to comment https://forums.phpfreaks.com/topic/13865-sql-data-into-an-array/#findComment-53987 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.