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;?> 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'] 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;?> Link to comment https://forums.phpfreaks.com/topic/285776-if-statement-question/#findComment-1466988 Share on other sites More sharing options...
Ch0cu3r Posted January 29, 2014 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;?> 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! Link to comment https://forums.phpfreaks.com/topic/285776-if-statement-question/#findComment-1466999 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.