Skip to content
Snippets Groups Projects
loschen.php 261 B
Newer Older
Eric Laufer's avatar
Eric Laufer committed
<?php

require_once('lib/class/bver.class.php');
$box = new BVER;

if(isset($_POST['run']['box_admin_box_loschen'])){
	$box->set_art('admin');
}
if(isset($_POST['run']['box_user_box_loschen'])){
	$box->set_art('user');
}
$box->Delete($_POST);

?>