Jump to content

Question about mysql_fetch_assoc()...


A JM

Recommended Posts

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

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
     ....
}

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.