A JM Posted December 23, 2009 Share Posted December 23, 2009 How do I skip to the next item in the array if $invamt is = 0? while($row = mysql_fetch_assoc($result)) { $invamt = round(($row['inv_amount'] //I'm looking for something like: If $invamt = 0 then goto next array item.... .... The rest of my code goes here .... } Thanks for any help. A JM, Quote Link to comment https://forums.phpfreaks.com/topic/186150-question-about-mysql_fetch_assoc/ Share on other sites More sharing options...
rajivgonsalves Posted December 23, 2009 Share Posted December 23, 2009 since its a loop I think continue should work while($row = mysql_fetch_assoc($result)) { $invamt = round(($row['inv_amount'] //I'm looking for something like: If $invamt = 0 then continue; .... The rest of my code goes here .... } Quote Link to comment https://forums.phpfreaks.com/topic/186150-question-about-mysql_fetch_assoc/#findComment-983082 Share on other sites More sharing options...
A JM Posted December 23, 2009 Author Share Posted December 23, 2009 Not sure I follow... You mean this would work? If $invamt != 0 then continue; Quote Link to comment https://forums.phpfreaks.com/topic/186150-question-about-mysql_fetch_assoc/#findComment-983105 Share on other sites More sharing options...
rajivgonsalves Posted December 23, 2009 Share Posted December 23, 2009 Yes this is just code to illustrate you'll have to get the correct syntax in php Quote Link to comment https://forums.phpfreaks.com/topic/186150-question-about-mysql_fetch_assoc/#findComment-983109 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.