Subversion Repositories ALCASAR

Rev

Rev 325 | Rev 2226 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log

Rev 325 Rev 1805
Line 3... Line 3...
3
	include_once("../lib/sql/drivers/$config[sql_type]/functions.php");
3
	include_once("../lib/sql/drivers/$config[sql_type]/functions.php");
4
else{
4
else{
5
	echo "<b>Could not include SQL library</b><br>\n";
5
	echo "<b>Could not include SQL library</b><br>\n";
6
	exit();
6
	exit();
7
}
7
}
8
$link = @da_sql_pconnect($config);
8
$link = da_sql_pconnect($config);
9
if ($link){
9
if ($link){
10
	$res = @da_sql_query($link,$config,
10
	$res = da_sql_query($link,$config,
11
		"DELETE FROM $config[sql_reply_table] WHERE username = '$login';");
11
		"DELETE FROM $config[sql_reply_table] WHERE username = '$login';");
12
	if ($res){
12
	if ($res){
13
		$res = @da_sql_query($link,$config,
13
		$res = da_sql_query($link,$config,
14
			"DELETE FROM $config[sql_check_table] WHERE username = '$login';");
14
			"DELETE FROM $config[sql_check_table] WHERE username = '$login';");
15
		if ($res){
15
		if ($res){
16
			$res = @da_sql_query($link,$config,
16
			$res = da_sql_query($link,$config,
17
				"DELETE FROM $config[sql_usergroup_table] WHERE username = '$login';");
17
				"DELETE FROM $config[sql_usergroup_table] WHERE username = '$login';");
18
			if (!$res)
18
			if (!$res)
19
				echo "<b>Error deleting user $login from user group table: " . da_sql_error($link,$config) . "</b><br>\n";
19
				echo "<b>Error deleting user $login from user group table: " . da_sql_error($link,$config) . "</b><br>\n";
20
			if ($config[sql_use_user_info_table] == 'true'){
20
			if ($config['sql_use_user_info_table'] == 'true'){
21
				$res = @da_sql_query($link,$config,
21
				$res = da_sql_query($link,$config,
22
				"DELETE FROM $config[sql_user_info_table] WHERE username = '$login';");
22
				"DELETE FROM $config[sql_user_info_table] WHERE username = '$login';");
23
				if ($res)
23
				if ($res)
24
					echo "<b>L'usager $login a &eacute;t&eacute; correctement supprim&eacute;</b><br>\n";
24
					echo "<b>L'usager $login a &eacute;t&eacute; correctement supprim&eacute;</b><br>\n";
25
				else
25
				else
26
					echo "<b>Error deleting user $login from user info table: " . da_sql_error($link,$config) . "</b><br>\n";
26
					echo "<b>Error deleting user $login from user info table: " . da_sql_error($link,$config) . "</b><br>\n";