<?php
$title="Technique - www.serie6.com - l'univers de la BMW série 6 : M635, 635, 633, 628, 630";

//Marqueur Estat
$article = $_GET['article'];
if ($article) {
    $estatmark="technique_".$article;
    } else {
    $estatmark="index_technique";
}
$estatgroup="technique";
    
include("includes/header.inc");

    $db = mysql_connect("localhost", "ju30891", "bjm7pc9f");
    mysql_select_db("ju30891",$db);

    //Tableau général de la page avec des \n pour espacer le code
    echo "<table border='0' cellpadding='0' cellspacing='1' style='border-collapse: collapse' bordercolor='#111111' width='750'>";
    echo "<tr><td valign='top' width='565'>";

    if ($article) {
       $art = mysql_query("SELECT pagehtm,titre FROM technique WHERE noinscript='$article'",$db);
       $myart = mysql_fetch_array($art);
       echo "<p><span class='postfoot'>$myart[1]</span></p>\n";

       include("$myart[0]");

    } else {
      //Pas de demande d'article donc accueil du module technique
			echo "<p><span class='postfoot'>Accueil Technique</span></p>";
			echo "L'histoire, les chiffres, la côte... Mais aussi les améliorations et certaines réparations !";
			echo "<br><br><center><img src='nav/accueiltechnique.jpg'></center>";

    }
					 
    //Colonne séparatrice
    echo "</td><td width='15' valign='top'>&nbsp;</td><td valign='top' width='170'>";

    //Requête pour le tableau de navigation
    $liste_tech = mysql_query("SELECT rubrique,noinscript FROM technique WHERE no_rub='1' ORDER BY rubrique ASC",$db);

    //Début du tableau de couleurs
    echo "<table border='0' cellpadding='4' cellspacing='1' style='border-collapse: collapse' bordercolor='#111111' width='100%' bgcolor='#345487'>\n";
    echo "<tr><td class='maintitle' height='16'><p align='center'>Articles</td></tr><tr><td width='100%' class='forum2'>\n";

          
    //Affichage avec lien hypertexte
    while ($mylist = mysql_fetch_array($liste_tech)) {
          echo "<img border='0' src='nav/img_carre.gif' width='10' height='9'>&nbsp;";
          echo "<a href='technique.php3?article=$mylist[1]'>$mylist[0]</a><br>\n";
          }

    //Fonction recherche
    echo "</td></tr>";
    echo "<tr><td width='100%' class='mainfoot' height='13'></td></tr></table>\n";
   
	 	include("includes/recherche.inc");
	 
    //Fin du tableau principal de la page
    echo "</td></tr></table>\n";

    include("includes/footer.inc");

?>
