jpk5930 Posted October 31, 2009 Share Posted October 31, 2009 I would like some guidance on the usage of foreach as I try to parse through a large database and whittle down to a few select stocks. I'm currently doing this with vb, but I'm wanting to get it working in php. I think I'm just struggling with the syntax, but I'm unsure. After a week of trial and error, I've decided it's time to reach out for help. Currently, I can connect with the db, run a simple query, and return the results to a web page. The db is made up of the past 2 weeks' stock symbols, prices, volumes. I want to go through each symbol and check against 2 conditions. If both conditions are true for that symbol, I want to put it (and the 2 weeks of data) in another db for further parsing later. So in plain english, here's what I'm trying to accomplish: for each unique symbol, if condition a is true on every day and condition b is true on every day, then write all the data for the past 2 weeks for that symbol to db_x I'm not sure if it's the most efficient method, but I was thinking I'd loop through the db checking the conditions and meanwhile saving the data to an array, then if the conditions are true when it gets to a different symbol it runs thrrough the array and adds the data to db_x....if it gets a false anywhere along the way for a particular symbol, it clears the array and moves on to the next symbol to check it. I don't want to hard code the 2 week's (ie loop through each stock 10 times, because of holidays, some stocks do not trade every day, etc). I need to check for the symbol changing to know when it's time to make a decision on whether to add or drop the previous symbol. I've got it loosely structured to use a while loop to cycle through the entire list: while ($row = mysql_fetch_assoc($result)) { Then I suppose the foreach would be used, but I'm running into complex commands that I'm needing guidance on. Is ArrayIterator current to PHP5, and if so, is this the direction I should be studying up on? Any recommendations on a good online tutorial for someone who is not well versed in programming, but can get by through dogged determination (and a little help from my friends )? It should be noted that my array I'm iterating through (the symbols) has several associated elements (volume, closing price, high, low). As for providing code, I really don't have anything to go by yet. I have not delved too far past "foreach ($arr as $key => $value). I'm using mysql 5 and php 5 and apache2 on an Ubuntu 9.04 machine. Thank you, JK Link to comment https://forums.phpfreaks.com/topic/179726-foreach-loop-assistance-request/ Share on other sites More sharing options...
kickstart Posted October 31, 2009 Share Posted October 31, 2009 Hi If you extract from a db into an array then you can loop through the array with foreach. For example say your array was called $stocks, with each element being an array of volume, closing price, high and low. You could loop through an echo out a list of the volume and closing price like this:- foreach ($stocks AS $field=>$value) { echo $value['volume'].' - '.$value['closing price'].'<br />'; } or you could loop through all the elements for each array element like this:- foreach ($stocks AS $field=>$value) { foreach ($value AS $field1=>$value1) { echo $value1; } echo '<br />'; } However having said this, it looks like it may be easier to do what you want purely (or at least mainly) in SQL. All the best Keith Link to comment https://forums.phpfreaks.com/topic/179726-foreach-loop-assistance-request/#findComment-948286 Share on other sites More sharing options...
jpk5930 Posted November 1, 2009 Author Share Posted November 1, 2009 Keith, Thank you for your insight! I'll toy with it some more with your suggestions in mind and let you know if I solve it with PHP or continue using MySQL. jk Link to comment https://forums.phpfreaks.com/topic/179726-foreach-loop-assistance-request/#findComment-948948 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.