If anybody cares, I modded this a bit to confirm password before deleting...
In the attached text file from 1st post add this after include('./global.php');
Code:
$password = $HTTP_POST_VARS['password'];
$dbpassword = $DB_site->query_first("SELECT password FROM user WHERE userid='".addslashes(htmlspecialchars($bbuserinfo['userid']))."'");
if($dbpassword[0] != md5($password)) {
show_nopermission();
}
And in the deleteself template add this after <form action="member2.php" method="post">
Code:
Enter Password: <input type="password" name="password" size="20"><br><br>
That's all!