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 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
| <div id="header"><img src="images/header_01.png" alt="header" width="126" height="109" /><img src="images/header_02.png" alt="header" width="119" height="109" /><img src="images/header_03.png" alt="header" width="142" height="109" /><img src="images/header_04.png" alt="header" width="49" height="109" /><img src="images/header_05.png" alt="header" width="363" height="109" /></div>
<div id="version">
<div id="asc"><a href="<?php echo tep_href_link('shopping_cart.php')?>"></a></div>
<div id="opt_h">
<?php
echo tep_draw_form('currencies', tep_href_link(basename($PHP_SELF), '', $request_type, false), 'get');
reset($currencies->currencies);
$currencies_array = array();
while (list($key, $value) = each($currencies->currencies)) {
$currencies_array[] = array('id' => $key, 'text' => $value['title']);
}
$hidden_get_variables = '';
reset($HTTP_GET_VARS);
while (list($key, $value) = each($HTTP_GET_VARS)) {
if ( ($key != 'currency') && ($key != tep_session_name()) && ($key != 'x') && ($key != 'y') ) {
$hidden_get_variables .= tep_draw_hidden_field($key, $value);
}
}
echo tep_draw_pull_down_menu('currency', $currencies_array, $currency, 'onChange="this.form.submit();" class="se1"') . $hidden_get_variables . tep_hide_session_id();
echo '</form>';
?>
</div>
<div id="id2"><?php
if (tep_session_is_registered('customer_id')) {
$req = mysql_query("select * from customers where customers_id='$customer_id'");
$boucle = mysql_fetch_object($req);
$nom = $boucle->customers_lastname;
echo '<div style="position:absolute;top:60px;left:60px;color:#FFFFFF;font-weight:normal;font-size:10px;">Bonjour :'.$nom.'</div>';
?>
<a href="<?php echo tep_href_link(FILENAME_LOGOFF, '', 'SSL'); ?>" class=""><?php echo '<div align="left" style="position:absolute;top:73px;left:46px; color:#FFFFFF;font-weight:normal;font-size:10px;">'.HEADER_TITLE_LOGOFF.'</div>'; ?></a> <?php } else {
echo'<a style="position:absolute;top:60px;left:60px;color:#FFFFFF;font-weight:normal;font-size:10px;" href="login.php"><u>Se connecter</u> ?</a>';
}
?>
</div>
<div id="sh"><p><a href="<?php echo tep_href_link('shopping_cart.php')?>"></a><a href="<?php echo tep_href_link('shopping_cart.php')?>"></a></p>
<p> </p></div><div id="sh1"><p><a href="<?php echo tep_href_link('shopping_cart.php')?>"><?php echo tep_image(DIR_WS_IMAGES.'shopping_cart_im.png','','','','hspace="9" vspace="3"')?></a></p></div>
<div id="img_h1">
<?php
if ($cart->count_contents()==0) {
echo '<p align="center">'.BOX_HEADING_SHOPPING_CART.'</p>';
}else{
?>
<a style="color:#FFFFFF;font-weight:normal;font-size:10px;" href=" <?php echo tep_href_link('shopping_cart.php'); ?>">
<?php echo '<p align="center">('.$cart->count_contents().') article(s) dans votre panier</p>';
}
?>
</div>
</p>
<div class="Style5">
<p align="center">Besoin d'un conseil ?<br />
Une question ?<br />
<a href="contact_us.php"><span class="Style6">Cliquer ici »</span></a></p> </div>
<p></p>
<div align="right"><a href="<?php echo tep_href_link('contact_us.php')?>"><img src="images/dame10.png" width="57" height="86" alt="header" align="right"></a></div>
</div>
<div id="menup">
<ul>
<li><a class="menu" href="index.php">Accueil</a></li>
<li><a class="menu" href="products_new.php">Nouveautés</a></li>
<li><a class="menu" href="specials.php">Promotions</a></li>
<li><a class="menu" href="account.php">Mon compte</a></li>
<li><a class="menu1" href="contact_us.php">Nous contacter</a></li>
</ul>
</div> |