project.lock();
database.connect(client.type,
client.server,
client.id,
client.password,
client.database);
if(!database.connected())
{
redirect("database.html");
}
if(request.table == null)
{
redirect("drop.html");
}
database.execute("DROP TABLE " + request.table);
redirect("home.html");