hi i have a problem with WHILE loop the LOOP it works but the navigator dos not show what is after it. here is the code notice </table> and the footer (include) are not conceder:
<?php
require_once("\includes\connect.inc.php");
include("\includes\head.inc.php");
?>
<title>Accueil administration site Tombola</title>
</head>
<body>
<div id="container">
<div id="header">
<h1>Administration site Tombola</h1>
</div><!--#header-->
<?php
include("/includes/menu.php");
?>
<div id="body">
<h2>liste des cadeaux</h2>
<?php
if (isset($succes)) echo $succes;
?>
<table class="affich">
<tr>
<th>Designation</th><th>Argent</th><th>Somme</th><th>photo</th>
</tr>
<?php
mysql_select_db("tombola");
$cadeaux=mysql_query("SELECT * FROM cadeaux");
while ($cadeaux2 = mysql_fetch_array($cadeaux) or die(mysql_error()) )
{
if ($cadeaux2['argent']='0')
{
$cadeaux2['argent']="Non";
$cadeaux2['somme']="---";
}
else
{
$cadeaux2['argent']="Oui";
}
echo "<tr>";?>
<td><?php echo $cadeaux2['designation']; ?></td><td><?php echo $cadeaux2['argent']; ?></td><td><?php echo $cadeaux2['somme']; ?></td><td><img src="<?php echo $cadeaux2['photo']; ?>"/></td>
<?php echo "</tr>";}
?>
[COLOR="DarkOrange"] </table>
<?php
include('includes\end.inc.php');
?>[/COLOR]
code source :
<!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" />
<link rel="stylesheet" type="text/css" href="style/css.css"/>
<link rel="stylesheet" type="text/css" href="style/inscript.css"/>
<link rel="stylesheet" type="text/css" href="style/admin.css"/>
<title>Accueil administration site Tombola</title>
</head>
<body>
<div id="container">
<div id="header">
<h1>Administration site Tombola</h1>
</div><!--#header-->
<div id="menu">
<ul>
<li><a href="admin.php">Accueil</a></li>
<li><a href="cadeaux.php">cadeaux</a></li>
<li><a href="#3">ajouter</a></li>
</ul>
</div><!--#menu-->
<div id="body">
<h2>liste des cadeaux</h2>
<table class="affich">
<tr>
<th>Designation</th><th>Argent</th><th>Somme</th><th>photo</th>
</tr>
<tr> <td>poster cisco</td><td>Oui</td><td>0</td><td><img src="images/hell_1.jpg"/></td>
[COLOR="DarkOrange"]</tr>[/COLOR]