Voilà mon problème:

Code : Sélectionner tout - Visualiser dans une fenêtre à part
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
 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Index</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link href="css.css" rel="stylesheet" type="text/css" />
</head>
<body bgcolor="#ffffff">
<table height="100%" width="100%">
<tr>
<td align="center" valign="middle">
<div id="middle">
<table height="100%" width="100%">
<tr>
<td height="338" align="center" valign="top">
<?
if (!isset ($_GET['page']) | $_GET['page']="")
{
include "acceuil.php";
}
else{
$feuil=$_GET['page'].".php";
print_r ($_GET);
include $feuil;
}
?></td>
</tr>
</table>
</div>
<img src="images/index.png"  height="625"  width="750" border="0" usemap="#graph" />
<map name="graph">
  <area shape="rect" coords="10,1,744,174" href="index.php" >
  <area shape="rect" coords="23,216,154,261" href="index.php?page=news" >
  <area shape="rect" coords="24,283,155,328" href="index.php?page=article" />
  <area shape="rect" coords="24,352,155,397" href="index.php?page=galerie" />
  <area shape="rect" coords="24,415,155,460" href="index.php?page=upload" />
  <area shape="rect" coords="24,485,155,530" href="index.php?page=download" />
  <area shape="rect" coords="25,551,156,596" href="admin/index.php" />
</map>
</td>
</tr>
</table>
</body></html>
Voila ce qui s'affiche :

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
 
Array ( [page] => )
Warning: include(.php) [function.include]: failed to open stream: No such file or directory in /mnt/149/sda/6/b/ecolondon/emilien/index.php on line 25
 
Warning: include() [function.include]: Failed opening '.php' for inclusion (include_path='/mnt/149/sda/6/b/ecolondon/include:.:/usr/php5/lib/php') in /mnt/149/sda/6/b/ecolondon/emilien/index.php on line 25
Je ne comprend pas pourquoi...
ps: ça marche parfaitement en local avec easyphp