-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathedit_devis.php
executable file
·52 lines (52 loc) · 1.07 KB
/
edit_devis.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
<?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: fckconfig.js
* Editor configuration settings.
*
* * * Version: 5.0.0
* * * * Modified: 07/10/2016
*
* File Authors:
* Guy Hendrickx
*.
*/
include_once("include/headers.php");
?><script type="text/javascript" src="javascripts/confdel.js"></script><?php
include_once("include/finhead.php");
if (!isset($dev_num) /*&& $dev_num ==''*/) {
$num_dev=isset($_GET['num_dev'])?$_GET['num_dev']:"";
}
$nom=isset($_GET['article'])?$_GET['article']:"";
?>
<table width="760" border="0" class="page" align="center">
<tr>
<td class="page" align="center">
<?php
if (isset($message)&&$message!='') {
echo $message;
}
include ("form_editer_devis.php");
?>
</td>
</tr>
<tr>
<td>
<?php
$aide='devis';
include("help.php");
include("include/bas.php");
?>
</td>
</tr>
</table>
</body>
</html>