Jump to content

If statement question


Red2034

Recommended Posts

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

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;?>

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;?>

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.