Managing members by admin using php

Sorry for asking the question about setting my question function object the last time. I'm new to Stackoverflow.com and also php why.

I tried to ask:

I made an administrator account. Members have a registration page so the member will register. When a user logs into the database table, I will have a field whose value will be initialized to 0, which means it is not approved. In the admin account I have a code to get the list of members. The code is below:

<h2><?php echo "User list"; ?></h2>

        <table border="0" cellpadding="0" cellspacing="0">
                <tr bgcolor="#f87820">
                        <td><img src="img/blank.gif" alt="" width="10" height="25"></td>
                        <td class="tabhead"><img src="img/blank.gif" alt="" width="150" height="6"><br><b><?php echo "first name"; ?></b></td>
                        <td class="tabhead"><img src="img/blank.gif" alt="" width="150" height="6"><br><b><?php echo "lastname name"; ?></b></td>
                        <td class="tabhead"><img src="img/blank.gif" alt="" width="150" height="6"><br><b><?php echo "member id"; ?></b></td>
                        <td class="tabhead"><img src="img/blank.gif" alt="" width="50" height="6"><br><b><?php echo "delete"; ?></b></td>
                        <td><img src="img/blank.gif" alt="" width="10" height="25"></td>
                </tr>

                <?php

                                                }

                        $result=mysql_query("SELECT member_id,firstname,lastname,login FROM members ORDER BY firstname");
                        $i = 0;
                        while($row = mysql_fetch_array($result)) {
                                if ($i > 0) {
                                        echo "<tr valign='bottom'>";
                                        echo "<td bgcolor='#ffffff' height='1' style='background-image:url(img/strichel.gif)' colspan='6'></td>";
                                        echo "</tr>";
                                }
                                echo "<tr valign='middle'>";
                                echo "<td class='tabval'><img src='img/blank.gif' alt='' width='10' height='20'></td>";
                                echo "<td class='tabval'><b>".$row['lastname']."</b></td>";
                                echo "<td class='tabval'>".$row['firstname']." </td>";
                                echo "<td class='tabval'>".$row['member_id']." </td>";

                                echo "<td class='tabval'><a onclick=\"return </span></a></td>";
                                echo "<td class='tabval'></td>";
                                echo "</tr>";
                                $i++;
                        }

                ?>

        </table>


in this i wanna add tho more things in the table 1 to delete a member and 2 to have approved or denied option for that i made two functiom

below code is to delete

if($_REQUEST['action']=="del")
{
$memberId = mysql_real_Escape_string($_REQUEST['member_id']);
mysql_query("DELETE FROM members WHERE member_id=$memberId");
}

      

below one for member approval

But my problem is that I don't know how to include a button or radio button in the table that can pass a value to remove or approve those features.

Please tell me how the syntax is to add this button so that for approval I can change the value 0 I gave in the database to 1 for the member to get approved.

-1


source to share


2 answers


Try the following:

echo '<td><a href="http://yourwebsite/yourscriptname.php?action=del&amp;member_id='
   . htmlspecialchars($row['member_id']) . '">Delete</a>';
if ($row['approved'] == 0) {
    echo '&nbsp;<a href="http://yourwebsite/yourscriptname.php?action=approve&amp;member_id='
       . htmlspecialchars($row['member_id']) . '">Approve</a>';
}
echo '</td>';

      

And make sure all your database values ​​are sent to the browser in htmlspecialchars ().



On the back side

$member_id = 0;
if (isset($_GET['member_id'])) $member_id = intval($_GET['member_id']);
$action = '';
if (isset($_GET['action'])) $action = $_GET['action'];

$sql = '';
switch($action) {
case 'approve':
    $sql = "UPDATE members SET approval = 1 WHERE member_id = $member_id";
    break;
case 'delete':
    $sql = "DELETE FROM member WHERE member_id = $member_id";
    break;
}
if (!empty($sql) && !empty($member_id)) {
    // execute the sql.
}

      

+1


source


What I would do is set up the form inside the table.

?> <form name="deleteUser" id="deleteUser" method="post" action=""> <input type="hidden" name="member_id" id="member_id" value="<?php echo $row['member_id'] ?> <input type="submit" name="action" id="action" value="del" /> </form><?php



I would insert this between the tag <td>

.

<td class='tabval'>INSERT HERE</td>";

0


source







All Articles