Red2034 Posted January 29, 2014 Share Posted January 29, 2014 I am looking to show the linking button for each row that does not have the txt 'completed' in the column 'status' here is what I started with but it is not working.... See anything wrong from this newby to PHP? <?php $count = 1;foreach($link as $row):?> if ($status != 'completed'){ <tr> <td><a href="<?php echo $row['deep_link'];?>" target="_blank"> <?php echo get_phrase('launch');?></a> </td> </tr> } <?php endforeach;?> Quote Link to comment https://forums.phpfreaks.com/topic/285776-if-statement-question/ Share on other sites More sharing options...
Ch0cu3r Posted January 29, 2014 Share Posted January 29, 2014 $status should be $row['status'] Quote Link to comment https://forums.phpfreaks.com/topic/285776-if-statement-question/#findComment-1466982 Share on other sites More sharing options...
Red2034 Posted January 29, 2014 Author Share Posted January 29, 2014 did not work... it still shows all rows. <?php $count = 1;foreach($classes as $row):?> if ( $row['status'] != 'completed'){ <tr><td><a href="<?php echo $row['deep_link'];?>" target="_blank"> <?php echo get_phrase('launch');?> </a> </td></tr> } <?php endforeach;?> Quote Link to comment https://forums.phpfreaks.com/topic/285776-if-statement-question/#findComment-1466988 Share on other sites More sharing options...
Solution Ch0cu3r Posted January 29, 2014 Solution Share Posted January 29, 2014 I didnt notice this earlier your if statement is outside of the <?php ?> tags <?php $count = 1;foreach($classes as $row): if ( $row['status'] != 'completed'): ?> <tr><td><a href="<?php echo $row['deep_link'];?>" target="_blank"> <?php echo get_phrase('launch');?> </a> </td></tr> <?php endif; endforeach;?> Quote Link to comment https://forums.phpfreaks.com/topic/285776-if-statement-question/#findComment-1466996 Share on other sites More sharing options...
Red2034 Posted January 29, 2014 Author Share Posted January 29, 2014 That did it!! Thanks for the help! Quote Link to comment https://forums.phpfreaks.com/topic/285776-if-statement-question/#findComment-1466999 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.