PHP Classes

File: admin/deleteUser.php

Recommend this page to a friend!
  Classes of mohammad anzawi   Simple PHP Newsletter & Mailing System   admin/deleteUser.php   Download  
File: admin/deleteUser.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Simple PHP Newsletter & Mailing System
Send a newsletter to users stored in a database
Author: By
Last change:
Date: 2 years ago
Size: 2,232 bytes
 

Contents

Class file image Download
<?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 m.anzawi2013@gmail.com #
# 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 m.anzawi2013@gmail.com
 * 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>