-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathajouter_cat.php
executable file
·53 lines (53 loc) · 1.43 KB
/
ajouter_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
<?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: ajouter_cat.php
* permet l'ajout de catégories d'articles
*
* * Version: 5.0.0
* * * * Modified: 07/10/2016
*
* File Authors:
* Guy Hendrickx
*.
*/
if (!isset($user_art) OR $user_art == 'n') {
include_once("include/headers.php");
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");
echo "<h1>$lang_article_droit</h1>";
include_once("include/bas.php");
exit;
}
?>
<form action="categorie_new.php" method="post">
<center>
<table class="page">
<caption><?php echo $lang_categorie_ajout; ?></caption>
<tr>
<td class="texte0"> <?php echo "$lang_cat_nom" ?></td>
<td class="texte0"><input name="categorie" type="text" id="uni2" size="27" maxlength="30" value=""></td>
</tr>
<tr>
<td class="submit" colspan="2">
<input type="submit" name="Submit2" value="<?php echo $lang_ajouter; ?>">
<input name="reset" type="reset" id="reset2" value="<?php echo $lang_effacer; ?>">
</td>
</tr>
</table>
</center>
</form>