After clicking the VIEW button and nothing happening, I started to wonder what's wrong?
GALLERIES NAME  POST    EDIT    DELETE  
Slideshow               VIEW     
SERVICES        POST    VIEW     
Code:
<?php foreach ($gallery as $gallery_item): ?>
    <tr>
        <td><?php echo $gallery_item['galleries_name']; ?></td>
        <td>
            <?php if( $gallery_item['galleries_post_type'] == 'post') { echo "#"; }?>   
        </td>
        <td>
            <button type="button" class="edit" onclick="location.href = '
                <?php 
                if( $gallery_item['galleries_post_type'] == 'post') {
                    echo site_url('cpages/galleries/'.$gallery_item['galleries_id']); 
                } else {                                
                    echo site_url('cpages/viewpictures/'.$gallery_item['galleries_id']); 
                }
                ?>
            ';">VIEW</button>
        </td>
 
     
    