1 |
root |
1 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
|
|
2 |
<HTML><!-- Written by Rexy -->
|
|
|
3 |
<HEAD>
|
|
|
4 |
<TITLE>Modif logo organisme</TITLE>
|
|
|
5 |
<link rel="stylesheet" href="/css/style.css" type="text/css">
|
|
|
6 |
<SCRIPT language="javascript" type="text/javascript">
|
|
|
7 |
function rafraichissement(cadre1, val1)
|
|
|
8 |
{
|
|
|
9 |
eval(cadre1+".location='"+val1+"'");
|
|
|
10 |
}
|
|
|
11 |
</SCRIPT>
|
|
|
12 |
</HEAD>
|
|
|
13 |
<body>
|
|
|
14 |
<?php
|
|
|
15 |
if(isset($_FILES['logo']))
|
|
|
16 |
{
|
|
|
17 |
unset($result);
|
|
|
18 |
$taille_max = 100000;
|
|
|
19 |
$destination = '/var/www/html/images/organisme.png';
|
|
|
20 |
$extension = strstr($_FILES['logo']['name'], '.');
|
|
|
21 |
if ($extension != '.png')
|
|
|
22 |
{
|
|
|
23 |
$result = 'Veuillez sélectionner un fichier de type png !';
|
|
|
24 |
}
|
|
|
25 |
elseif (file_exists($_FILES['logo']['tmp_name']) and filesize($_FILES['logo']['tmp_name']) > $taille_max)
|
|
|
26 |
{
|
|
|
27 |
$result = 'La taille du fichier doit être inférieur à 100Ko !';
|
|
|
28 |
}
|
|
|
29 |
if (!isset($result))
|
|
|
30 |
{
|
|
|
31 |
move_uploaded_file($_FILES['logo']['tmp_name'], $destination);
|
|
|
32 |
}
|
|
|
33 |
}
|
|
|
34 |
?>
|
|
|
35 |
<TABLE width="100%" border="0" cellspacing="0" cellpadding="0">
|
|
|
36 |
<tr><th>Personnalisation du logo d'organisme</th></tr>
|
|
|
37 |
<tr bgcolor="#FFCC66"><td><img src="/images/pix.gif" width="1"
|
|
|
38 |
height="2"></td></tr>
|
|
|
39 |
</TABLE>
|
|
|
40 |
<TABLE width="100%" border=0 cellspacing=0 cellpadding=1>
|
|
|
41 |
<tr bgcolor="#666666"><td>
|
|
|
42 |
<TABLE width="100%" border=0 cellspacing=0 cellpadding=2>
|
|
|
43 |
<tr><td valign="middle" align="left">
|
|
|
44 |
<CENTER><H3>Logo actuel : <img src="/images/organisme.png" width="90"><BR>
|
|
|
45 |
Vous pouvez sélectionnez un nouveau logo :</H3></CENTER>
|
|
|
46 |
<FORM action="logo.php" method=POST ENCTYPE="multipart/form-data">
|
|
|
47 |
<input type="file" name="logo">
|
|
|
48 |
<input type="hidden" name="MAX_FILE_SIZE" value="100000">
|
|
|
49 |
<input type="submit" value="Envoyer">
|
|
|
50 |
</FORM>
|
|
|
51 |
<?php
|
|
|
52 |
if (isset($result))
|
|
|
53 |
{
|
|
|
54 |
echo '<H3>'; echo $result; echo '</H3><BR>';
|
|
|
55 |
}
|
|
|
56 |
?>
|
|
|
57 |
<CENTER>Attention</CENTER>
|
|
|
58 |
- le logo que vous choisissez doit être un fichier au format libre 'PNG'.<BR>
|
|
|
59 |
- la taille de ce fichier doit être inférieure à 100Ko<BR>
|
|
|
60 |
- rafraîchissez les pages du navigateur pour voir le résultat<BR>
|
|
|
61 |
</TD></TR>
|
|
|
62 |
</TABLE>
|
|
|
63 |
</td></tr>
|
|
|
64 |
</TABLE>
|
|
|
65 |
</BODY>
|
|
|
66 |
</HTML>
|