par
Invité » 09 nov. 2005, 15:11
En fait donnes nous ta page "entière". Du <!DOCTYPE au </html>.
Tu es sous quel navigateur ?
Sorry, decidement, j'ai du mal !!
C'est une page accueil.php gere avec des includes. En fonction de la valeur de $page, j'inclu le bon fichier.
Navigateur utililisé IE 5.5 ou sup.
A savoir que je suis en Intranet.
Code : Tout sélectionner
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link rel="stylesheet" href="css/style.css" type="text/css"/>
<title><? echo $title; ?></title>
</head>
<body>
<table width="760" border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF" class="contour">
<!--DWLayoutTable-->
<tr>
<td height="80" colspan="2">
<?php
include ("haut.php");
?>
</td>
</tr>
<tr>
<td width="150" height="333" valign="top" class="right">
<table cellpadding="0" cellspacing="0">
<tr>
<td height="25" width="152" class="noir12center">
<center>CPAM : <? print $caisseAgentCarte; ?></center>
</td>
</tr>
<tr>
<td height="300" width="152">
<center>
<? print $menu; ?>
</center>
</td>
</tr>
<tr>
<td height="25" width="152">
<center>
<form method="post" name="imprimer">
<input type="button" value="IMPRIMER" name="imprimer" class="bouton_imprimer" onClick="javascript:window.print();">
</form>
</center>
</td>
</tr>
</table></td>
<td width="610" valign="top">
<?
if ($page == "commentaire") {include ("page_commentaire.php")};
?>
</td>
</tr>
</table>
</body>
</html>
Merci du coup de main !
[quote="charabia"]En fait donnes nous ta page "entière". Du <!DOCTYPE au </html>.
Tu es sous quel navigateur ?[/quote]
Sorry, decidement, j'ai du mal !!
C'est une page accueil.php gere avec des includes. En fonction de la valeur de $page, j'inclu le bon fichier.
Navigateur utililisé IE 5.5 ou sup.
A savoir que je suis en Intranet.
[code]
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link rel="stylesheet" href="css/style.css" type="text/css"/>
<title><? echo $title; ?></title>
</head>
<body>
<table width="760" border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF" class="contour">
<!--DWLayoutTable-->
<tr>
<td height="80" colspan="2">
<?php
include ("haut.php");
?>
</td>
</tr>
<tr>
<td width="150" height="333" valign="top" class="right">
<table cellpadding="0" cellspacing="0">
<tr>
<td height="25" width="152" class="noir12center">
<center>CPAM : <? print $caisseAgentCarte; ?></center>
</td>
</tr>
<tr>
<td height="300" width="152">
<center>
<? print $menu; ?>
</center>
</td>
</tr>
<tr>
<td height="25" width="152">
<center>
<form method="post" name="imprimer">
<input type="button" value="IMPRIMER" name="imprimer" class="bouton_imprimer" onClick="javascript:window.print();">
</form>
</center>
</td>
</tr>
</table></td>
<td width="610" valign="top">
<?
if ($page == "commentaire") {include ("page_commentaire.php")};
?>
</td>
</tr>
</table>
</body>
</html>
[/code]
Merci du coup de main !