Subversion Repositories ALCASAR

Rev

Rev 325 | Details | Compare with Previous | Last modification | View Log

Rev Author Line No. Line
325 richard 1
<?php
2
if (is_file("../lib/sql/drivers/$config[sql_type]/functions.php"))
3
	include_once("../lib/sql/drivers/$config[sql_type]/functions.php");
4
else{
5
	echo "<b>Could not include SQL library</b><br>\n";
6
	exit();
7
}
1805 clement.si 8
$link = da_sql_pconnect($config);
325 richard 9
if ($link){
1805 clement.si 10
	$res = da_sql_query($link,$config,
325 richard 11
		"DELETE FROM $config[sql_groupreply_table] WHERE groupname = '$login';");
12
	if ($res){
1805 clement.si 13
		$res = da_sql_query($link,$config,
325 richard 14
			"DELETE FROM $config[sql_groupcheck_table] WHERE groupname = '$login';");
15
		if ($res){
1805 clement.si 16
			$res = da_sql_query($link,$config,
325 richard 17
				"DELETE FROM $config[sql_usergroup_table] WHERE groupname = '$login';");
18
				if ($res)
19
					echo "<b>Le groupe $login a &eacute;t&eacute; correctement supprim&eacute;</b><br>\n";
20
				else
21
					echo "<b>Error deleting group $login from usergroup table: " . da_sql_error($link,$config) . "</b><br>\n";
22
		}
23
		else
24
			echo "<b>Error deleting group $login from group check table: " . da_sql_error($link,$config) . "</b><br>\n";
25
	}
26
	else
27
		echo "<b>Error deleting group $login from group reply table: " . da_sql_error($link,$config) . "</b><br>\n";
28
}
29
else
30
	echo "<b>Could not connect to SQL database</b><br>\n";
31
?>