<?php 
#---------------------------------------------------------------------------# 
# this Project Created by Mohammad Anzawi                                   # 
#                                                                           # 
# This project is intended for beginners and learners                       # 
# The main objective of this project is to see the way do something similar,# 
#  such as sending messages via e-mail, files Read the content and create   # 
#  templates or other                                                       # 
#   and saved on the server within a specific folder.                       # 
# Can anyone who want to modify or development (add some functions, styles),#  
# and use it in his dite, or commercially.                                  # 
#                                                                           # 
#  so if you have any question -> ask me on [email protected]          # 
# or visit my blog on http://www.phptricks.org                              # 
#---------------------------------------------------------------------------# 
 
/** 
 *  
 *  
 * I do not know what I am documenting this file 
 * so if you have any question -> ask me on [email protected] 
 * or visit my blog on http://www.phptricks.org 
 *  
 *  
 */ 
 
$subsc = new Subscribe(); 
 
if(isset($_GET['delete'])) { 
    $get = escape($_GET); 
     
    if($subsc->delete($get['delete'])) { 
        echo "Deleted"; 
    } else { 
        echo "Unable to Delete <br>" . implode('<br>', $subsc->errors()) ; 
         
    } 
} 
?> 
<style> 
    td { 
        padding: 10px; text-align: center; border: 1px solid #333; 
    } 
</style> 
<p> 
    Here You Can activate or deactivate Subscribers. 
</p> 
<table> 
    <thead> 
        <tr> 
            <td>User Name</td> 
            <td>User Email</td> 
            <td>Action</td> 
        </tr> 
    </thead> 
 
    <tbody> 
        <?php 
        foreach($subsc->getAllSubscribers() as $subs) { 
        ?> 
        <tr> 
            <td><?php echo $subs->u_name; ?></td> 
            <td><?php echo $subs->u_email; ?></td> 
            <td><a href="?page=deleteUser&delete=<?php echo $subs->u_id; ?>">Delete</a></td> 
        </tr> 
        <?php 
        } 
        ?> 
    </tbody> 
</table>
 
 |