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