Bonjour, voici mon problème, je cherche depuis 2 jours, en essayant beaucoup de possibilités différentes, mais jamais je ne trouve.
Alors voilà le problème. Je souhaite créer un include de mes 3 options ( architecture - design - advising ) dans la <div> navigation.
Cependant, cela ne semble pas marcher, de plus, il repete sans cesse les differents div.
Quelqu'un sait-il m'aider?
D'avance merci. Je souhaite beaucoup comprendre mon erreur. Si des gens se sentent l'âme pédagogue, je suis preneur !!
Modifié par infernus (15 Feb 2011 - 13:34)
Alors voilà le problème. Je souhaite créer un include de mes 3 options ( architecture - design - advising ) dans la <div> navigation.
Cependant, cela ne semble pas marcher, de plus, il repete sans cesse les differents div.
Quelqu'un sait-il m'aider?
D'avance merci. Je souhaite beaucoup comprendre mon erreur. Si des gens se sentent l'âme pédagogue, je suis preneur !!
<!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>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>BUREAU K</title>
<link href="index.css" rel="stylesheet" type="text/css" />
<link rel="shortcut icon" type="image/ico" href="favicon.ico" />
</head>
<div id="logo">
<a href="/index.php"><img src="icones/bureau_k.jpg" border="0"></a>
</div>
<div id="arch">
<a href="/architecture.php?page=architecture"><img src="icones/architecture.jpg" border="0" /></a>
</div>
<div id="pointg"></div>
<div id="des">
<a href="/design.php?page=design"><img src="icones/design.jpg" border="0"></a>
</div>
<div id="pointd"></div>
<div id="adv">
<a href="/advising.php?page=advising"><img src="icones/advising.jpg" border="0"></a>
</div>
<div id="contact"></div>
<div id="navigation">
<?php
if (!isset($_GET['page'])) $page= 'accueil'; else $page= $_GET['page'];
switch($page)
{
case "architecture":
include "architecture.php";
break;
case "design":
include "design.php";
break;
case "advising":
include "advising.php";
break;
default :
include "index.php";
}
?>
</div>
<div id="contenu"></div>
<body>
</body>
</html>
body
{
background:#FFF no-repeat;
}
#logo
{
display:block;
width:300px;
height:65px;
background:#FFF no-repeat left top;
position:absolute;
left:10px;
top:20px;
}
#arch
{
display:block;
width:130px;
height:25px;
background:#FFF no-repeat left top;
position:absolute;
left:10px;
top:85px;
}
#pointg
{
width:9px;
height:25px;
background:#FF0 no-repeat left top;
position:absolute;
left:140px;
top:85px;
}
#des
{
width:68px;
height:25px;
background:#FFF no-repeat left top;
position:absolute;
left:149px;
top:85px;
}
#pointd
{
width:9px;
height:25px;
background:#300 no-repeat left top;
position:absolute;
left:217px;
top:85px;
}
#adv
{
width:84px;
height:25px;
background:#FFF no-repeat left top;
position:absolute;
left:226px;
top:85px;
}
#contact
{
width:300px;
height:90px;
background:#F63 no-repeat left top;
position:absolute;
left:710px;
top:20px;
}
#navigation
{
display:block;
width:300px;
height:650px;
background:url(Sans%20titre-1.png) no-repeat left top;
position:absolute;
left:10px;
top:120px;
}
#contenu
{
width:690px;
height:650px;
background:#999 no-repeat left top;
position:absolute;
left:320px;
top:120px;
}
[/code] Modifié par infernus (15 Feb 2011 - 13:34)