-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathedit_cat.php
executable file
·89 lines (89 loc) · 2.76 KB
/
edit_cat.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<?php
/*
* Factux le facturier libre
* Copyright (C) 2003-2005 Guy Hendrickx, 2017 Thomas Ingles
*
* Licensed under the terms of the GNU General Public License:
* http://opensource.org/licenses/GPL-3.0
*
* For further information visit:
* http://factux.free.fr
*
* File Name: edit_cat.php
* Formulaire d'edition d'une categorie
*
* * * Version: 2015
* * * * Created: 07/10/2016
*
* File Authors:
* Thomas Ingles
*.
*/
include_once("include/headers.php");
$categorie=isset($_POST['categorie'])?apostrophe($_POST['categorie']):"";
$id_cat=isset($_POST['id_cat'])?$_POST['id_cat']:"";
if($id_cat!=""&&$categorie!=""){#MAJ
$sql = "SELECT categorie FROM " . $tblpref ."categorie WHERE id_cat = $id_cat";
$req = mysql_query($sql) or die('Erreur SQL !<br>'.$sql.'<br>'.mysql_error());
$data = mysql_fetch_array($req);
$anciennom = $data['categorie'];
$sql = "UPDATE ".$tblpref."categorie SET categorie ='{$categorie}' WHERE id_cat = '{$id_cat}'";
if($categorie!=''&&$categorie!=$lang_divers){
mysql_query($sql) OR die("<p>Erreur Mysql<br/>$sql<br/>".mysql_error()."</p>");
$message = "<h2>$lang_cat_maj</h2><p>$lang_de $anciennom $lang_vers $categorie</p>";
}
if($categorie==$lang_divers)
$message = "<h1>$lang_categorie $lang_divers</h1>";
include("lister_cat.php");
exit;
}
if($id_cat==""&&$categorie!=""){#NEW from edit_cat #fix
include("lister_cat.php");
exit;
}
include_once("include/finhead.php");
?>
<table width="760" border="0" class="page" align="center">
<tr>
<td class="page" align="center">
<?php
include_once("include/head.php");
if ($user_com == 'n') {
echo"<h1>$lang_commande_droit</h1>";
include_once("include/bas.php");
exit;
}
$id_cat=isset($_GET['id_cat'])?$_GET['id_cat']:"";
$sql = "
SELECT id_cat, categorie
FROM " . $tblpref ."categorie
WHERE id_cat = $id_cat";
$req = mysql_query($sql) or die('Erreur SQL !<br>'.$sql.'<br>'.mysql_error());
$data = mysql_fetch_array($req);
$categorie = $data['categorie'];
$id_cat = $data['id_cat'];
?>
<form action="edit_cat.php" method="post">
<center>
<table class="page">
<caption><?php echo $lang_categorie_modif; ?></caption>
<tr>
<td class="texte0"><?php echo "$lang_cat_nom" ?><input name="id_cat" type="hidden" value='<?php echo $id_cat; ?>' /></td>
<td class="texte0"><input name="categorie" type="text" id="uni2" size="27" maxlength="30" value='<?php echo $categorie; ?>' /></td>
</tr>
<tr>
<td class="submit" colspan="2">
<input type="submit" name="Submit2" value="<?php echo $lang_modifier; ?>">
<input name="reset" type="reset" id="reset2" value="<?php echo $lang_retablir; ?>">
</td>
</tr>
</table>
</center>
</form>
</td>
</tr>
<tr>
<td>
<?php
include("lister_cat.php");