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, 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 .... } 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; 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 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
Archived
This topic is now archived and is closed to further replies.