-
Notifications
You must be signed in to change notification settings - Fork 0
/
ID.php
796 lines (617 loc) · 42.6 KB
/
ID.php
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
<?php
include "../entities/services.php";
include "../core/serviceCore.php";
include "../entities/Panier.php";
include "../core/PanierCore.php";
include "../../config.php";
include "../entities/servAdmin.php";
include "../core/servAdminCore.php";
$serv=new servAdminCore();
$listeServ=$serv->afficherSuivie();
$pan=new PanierCore();
$listePanier=$pan->afficherPanier();
$affchage=$pan->afficherPanier();
$cPanier = $pan->countPanier();
$total=$pan->somme();
$ClimR=new ServCore();
$listeClima=$ClimR->afficherClim();
?>
<!doctype html>
<html>
<head>
<title>STMG </title>
<meta charset="utf-8">
<link href="../../lib/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!--external css-->
<link href="../../lib/font-awesome/css/font-awesome.css" rel="stylesheet" />
<link href="../../lib/advanced-datatable/css/demo_page.css" rel="stylesheet" />
<link href="../../lib/advanced-datatable/css/demo_table.css" rel="stylesheet" />
<link rel="stylesheet" href="../../lib/advanced-datatable/css/DT_bootstrap.css" />
<link rel="stylesheet" type="text/css" href="../../css/stylesheet_bootstrap.css" />
<link rel="stylesheet" type="text/css" href="../../css/stylesheet_bootstrap_theme.css" />
<link rel="stylesheet" type="text/css" href="../../css/stylesheet_categories.css" />
<link rel="stylesheet" type="text/css" href="../../css/stylesheet_custom.css" />
<link rel="stylesheet" type="text/css" href="../../css/stylesheet_font-awesome.min.css" />
<link rel="stylesheet" type="text/css" href="../../css/stylesheet_lightbox-0.5.css" />
<link rel="stylesheet" type="text/css" href="../../css/stylesheet_mega_menu.css" />
<link rel="stylesheet" type="text/css" href="../../css/stylesheet_product_list.css" />
<link rel="stylesheet" type="text/css" href="../../css/stylesheet_responsive.css" />
<link rel="stylesheet" type="text/css" href="../../css/stylesheet_suggestionbox.css" />
<link rel="stylesheet" type="text/css" href="../../css/index_home.css" />
<script type="text/javascript" src="../../jscript/jscript_jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="../../jscript/jscript_jquery.carouFredSel-6.2.1-packed.js"></script>
<script type="text/javascript" src="../../jscript/jscript_jquery.elevateZoom-3.0.8.min.js"></script>
<script type="text/javascript" src="../../jscript/jscript_jquery.equalheights.js"></script>
<script type="text/javascript" src="../../jscript/jscript_jquery.matchHeight.js"></script>
<script type="text/javascript" src="../../jscript/jscript_jquery.mousewheel.min.js"></script>
<script type="text/javascript" src="../../jscript/jscript_jquery.nivo.slider.pack.js"></script>
<script type="text/javascript" src="../../jscript/jscript_jquery.simplr.smoothscroll.min.js"></script>
<script type="text/javascript" src="../../jscript/jscript_jquery.touchSwipe.min.js"></script>
<script type="text/javascript" src="../../jscript/jscript_jquery.ui.totop.js"></script>
<script type="text/javascript" src="../../jscript/jscript_menu_top.js"></script>
<script type="text/javascript" src="../../jscript/jscript_script_bootstrap.js"></script>
<script type="text/javascript" src="../../jscript/jscript_stotal-storage.min.js"></script>
<script type="text/javascript" src="../../jscript/jscript_suggestionbox.js"></script>
<script type="text/javascript" src="../../jscript/jscript_top.js"></script>
<script type="text/javascript" src="../../jscript/jscript_xeasyTooltip.js"></script>
<script type="text/javascript" src="../../jscript/jscript_xjquery.easing.1.3.js"></script>
<script type="text/javascript" src="../../jscript/jscript_xjquery.jqtransform.js"></script>
<script type="text/javascript" src="../../jscript/jscript_xjquery.lightbox-0.5.js"></script>
<script type="text/javascript" src="../../jscript/jscript_xjscript_script.app.js"></script>
<body id="indexHomeBody">
<div id="page">
<!-- ========== IMAGE BORDER TOP ========== -->
<!-- BOF- BANNER TOP display -->
<!-- EOF- BANNER TOP display -->
<!-- ====================================== -->
<!-- ========== HEADER ========== -->
<header>
<div class="nav">
<div class="container">
<div class="row">
<div class="col-xs-12 col-md-7 col-lg-7 fright">
</div>
<ul class="header_user_info customer_links">
<!-- ========== NAVIGATION LINKS ========== -->
<li><a class="" href="s'inscrire.html">S'inscrire</a></li>
<li><a class="" href="connecter.html">Se Connecter</a> </li>
<!-- ====================================== -->
</ul>
</div>
<div class="col-xs-12 col-md-5 col-lg-5">
<div class="phone">
<p>(00216) 98963635</p>
<span>Horaires d'ouverture : 9h-17h</span>
</div>
</div>
</div>
</div>
</div>
<div class="bottom">
<div class="container">
<div class="row clearfix">
<div id="header_logo" class="col-xs-12 col-sm-3">
<!-- ========== LOGO ========== -->
<a href="http://localhost/views/mainpage.php"><img src="http://localhost/views/logostmg.png" alt="" /></a>
<!-- ========================== -->
</div>
<div class="col-xs-12 col-sm-9 col-md-9">
<div class="header_cust_block clearfix">
<p>Livraison gratuite</p>
<div>
<span>Pour tout achat supérieur à 99 dt</span>
<span>Offre valable sur tout le site</span>
</div>
</div>
<div class="shopping_cart" id="shopping_cart">
<!-- ========== SHOPPING CART ========== -->
<div class="shop-box-wrap">
<span class="cart_title" >Panier</span><span class="st3"> <?php echo $cPanier ?> </span> </div>
<div class="shopping_cart_content" id="shopping_cart_content" >
<ul class="cart-down"><li class="cart_item">
<div class="shop-box-wrap">
<form method="POST" action="supprimerPanier.php">
<div class="center_info">
<?PHP
foreach($listePanier as $row){
?>
<table>
<tr>
<td><div class="none"> <input type="hidden" name="ID_panier" value="<?PHP echo $row['ID_panier'];?>"> <?php echo "Produit" .$row['ID']; echo "| Quantité: ".$row['quantite']; ?></div> </td>
</tr>
<?php } ?>
<td></td><td><a href="cart.php">modifier</a></td>
</table>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
<!-- =================================== -->
<div id="search_block" class="clearfix">
<!-- ========== SEARCH ========== -->
<form name="quick_find_header" action="../../http://livedemo00.template-help.com/zencart_55417/index.php?main_page=advanced_search_result" method="get" class="form-inline form-search pull-right">
<input type="hidden" name="main_page" value="advanced_search_result" /><input type="hidden" name="search_in_description" value="1" /> <label class="sr-only" for="searchInput">Rechercher</label>
<input class="form-control" id="searchInput" type="text" name="keyword" />
<button type="submit" class="button-search"><i class="fa fa-search"></i><b>Rechercher</b></button>
</form>
<!-- ============================ -->
</div>
</div>
</div>
<div class="row">
<div class="col-xs-12 col-sm-12 col-md-12">
<div class="top_menu clearfix">
<div class="cat-title">MENU</div>
<!--bof-mega menu display-->
<div id="mega-wrapper" class="stickUpTop"><!-- bof mega-wrapper -->
<ul class="mega-menu col-sm-12"><!-- bof mega-menu -->
<li class="categories-li"><a class="drop">Catégories<span class="label">Nouveau !</span></a><!-- bof cateories -->
<div class="dropdown col-9">
<div class="levels">
<ul class="level2"><li data-match-height="cat-ul-gen" class="submenu col-inner">
<a href="http://localhost/views/salledebain.php">Salle de bain</a><ul class="level3"><li>
<a href="http://localhost/views/accessoiresSB.php">Accessoires de salle de bain</a></li><li>
<a href="http://localhost/views/baignoire.php">Baignoires</a></li><li>
<a href="http://localhost/views/robinets.php">Robinetterie et Lavabo</a></li></ul></li><li data-match-height="cat-ul-gen" class="submenu col-inner">
<a href="http://localhost/views/MaisonetJardin.php">Maison et Jardin</a><ul class="level3"><li>
<a href="http://localhost/views/tuyaux.php">Tuyaux et Echangeurs</a></li><li>
</li><li>
</li></ul></li><li data-match-height="cat-ul-gen" class="submenu col-inner">
<a href="http://localhost/views/cuisine.php">Cuisine</a><ul class="level3"><li>
</li><li>
</li><li></ul>
</div>
<div class="clearfix"></div>
<div class="categories-banners">
<div class="item_1"><a href="http://localhost/views/MaisonetJardin.php"><img src="../../images/cat_banner_1.jpg" class="img-responsive" alt="Water taps" title=" Water taps " width="1170" height="450" /><div class="title"><span>Maison et Jardin</span></div></a>
</div><div class="item_2"><a href="http://localhost/views/cuisine.php"><img src="../../images/cat_banner_2.jpg" class="img-responsive" alt="Sinks" title=" Sinks " width="1170" height="450" /><div class="title"><span>Cuisine</span></div></a>
</div><div class="item_3"><a "><img src="../../images/cat_banner_3.jpg" class="img-responsive" alt="Bathrooms" title=" Bathrooms " width="1170" height="450" /><div class="title"><span>Réparation</span></div></a>
</div> </div>
</div>
</li><!-- eof categories -->
<li class="specials_p"><a class="drop">A la une<span class="label">Promo !</span></a>
<!-- bof specials -->
<div class="dropdown col-9">
<div class="special_text"><p>Profitez des offres du moment et recevez des points de fidélité sur votre carte . Offres valables dans la limite des stocks disponibles ! </p></div>
<div class="list_carousel responsive">
<ul id="fcarousel">
<li class="col-products">
<div class="product-col">
<div class="img">
<a href="http://localhost/views/produit1.php"><img src="../../images/11.png" class="img-responsive" alt="Vigo Single Hole Waterfall Bathroom Faucet Less Handles - VG0300" title=" Robinet style moderne Cuisine et Salle de bain" width="200" height="200" /></a> </div>
<div class="sale-label">Promo</div>
<div class="prod-info">
<h5><a class="product-name name" href="http://localhost/views/produit1.php">Robinet style moderne Cuisine et Salle de bain</a></h5>
<div class="text">
The supplies we sell in our store are of premium q... </div>
<div class="price">
<strong> <span class="productSpecialPrice">71.00 DT</span><span class="normalprice">89 DT </span><span class="productPriceDiscount">-20%</span></strong> </div>
</div>
</div>
</li>
<li class="col-products">
<div class="product-col">
<div class="img">
<a href="http://localhost/views/produit2.php"><img src="../../images/12.png" class="img-responsive" alt="Vigo Tempered Glass Bathroom Sink - VG07505" title=" Lavabo en céramique Bronze style carthage " width="200" height="200" /></a> </div>
<div class="sale-label">Promo</div>
<div class="prod-info">
<h5><a class="http://localhost/views/produit2.php">Lavabo en céramique Bronze style carthage</a></h5>
<div class="text">
The supplies we sell in our store are of premium q... </div>
<div class="price">
<strong> <span class="productSpecialPrice">90 DT</span><span class="normalprice">124.00 DT </span><span class="productPriceDiscount">-15%</span></strong> </div>
</div>
</div>
</li>
<li class="col-products">
<div class="product-col">
<div class="img">
<a ><img src="../../images/13.png" class="img-responsive" alt="Vigo Two Handle Widespread Pull-Out Spray Bar Faucet with Soap D" title=" Echangeur double fonction Cuisine et Jardin" width="200" height="200" /></a> </div>
<div class="sale-label">Promo</div>
<div class="prod-info">
<h5><a class="product-name name" >Echangeur double fonction Cuisine et Jardin</a></h5>
<div class="text">
The supplies we sell in our store are of premium q... </div>
<div class="price">
<strong> <span class="productSpecialPrice">105 DT</span><span class="normalprice">122.5 DT </span><span class="productPriceDiscount">-15%</span></strong> </div>
</div>
</div>
</li>
<li class="col-products">
<div class="product-col">
<div class="img">
<a ><img src="../../images/14.png" class="img-responsive" alt="Waterstone Traditional Deck Mount One Handle Single Hole Pot Fil" title=" Echangeur traditionnel en Inox à une poignée" width="200" height="200" /></a> </div>
<div class="sale-label">Promo</div>
<div class="prod-info">
<h5><a class="product-name name" >Echangeur traditionnel en Inox à une poignée</a></h5>
<div class="text">
The supplies we sell in our store are of premium q... </div>
<div class="price">
<strong> <span class="productSpecialPrice">45.50 DT</span><span class="normalprice">70 DT </span><span class="productPriceDiscount">-25%</span></strong> </div>
</div>
</div>
</li>
<li class="col-products">
<div class="product-col">
<div class="img">
<a href="http://localhost/views/produit3.php"><img src="../../images/15.png" class="img-responsive" alt="Watts 1-in x 1-ft Reinforced PVC Reinforced Braided Vinyl Tubing" title=" Tuyau Jardin 70 mètres Résistant" width="200" height="200" /></a> </div>
<div class="sale-label">Promo</div>
<div class="prod-info">
<h5><a class="product-name name" href="http://localhost/views/produit3.php">Tuyau Jardin 70 mètres Résistant</a></h5>
<div class="text">
The supplies we sell in our store are of premium q... </div>
<div class="price">
<strong> <span class="productSpecialPrice">19.99 DT</span><span class="normalprice">30 DT </span><span class="productPriceDiscount">-30%</span></strong> </div>
</div>
</div>
</li>
<li class="col-products">
<div class="product-col">
<div class="img">
<a ><img src="../../images/16.png" class="img-responsive" alt="Whirlpool 40 Gallons 6-Year Regular Electric Water Heater" title=" Chauffe-eau électrique 40W en inox" width="200" height="200" /></a> </div>
<div class="sale-label">Promo</div>
<div class="prod-info">
<h5><a class="product-name name" >Chauffe-eau électrique 40W en inox</a></h5>
<div class="text">
The supplies we sell in our store are of premium q... </div>
<div class="price">
<strong> <span class="productSpecialPrice">199 DT</span><span class="normalprice">250 DT </span><span class="productPriceDiscount">-50%</span></strong> </div>
</div>
</div>
</li>
</ul>
<a id="prev2" class="prev" href="#"><</a>
<a id="next2" class="next" href="#">></a>
</div>
</div><!-- eof specials -->
</li>
<li class="specials_p"><a class="drop">Services<span class="label">Meilleur!</span></a>
<!-- bof specials -->
<div class="dropdown col-9">
<div class="special_text"><p>Notre sociétée possède un patrimoine de talents, que nous mettons à votre disposition afin d’apporter des solutions rapides et efficaces à toutes vos problématiques. Nous comprenons vos demandes en définissons vos priorités . </p></div>
<div class="list_carousel responsive">
<ul id="fcarousel">
<li class="col-products">
<div class="product-col">
<div class="img">
<a href="clim.php"><img src="../../images/clim.jpg" class="img-responsive" title="répartion et entretien des chauffages et climatiseurs " width="200" height="200" /></a>
</div>
<div class="sale-label">Meilleur</div>
<div class="prod-info">
<h5><a class="product-name name" href="clim.php">Le service Climatisation est basé sur la répartion...</a></h5>
<div class="text">
The supplies we sell in our store are of premium q... </div>
<div class="price">
<strong> <span class="productSpecialPrice">100-300 dt</span></strong> </div>
</div>
</div>
</li>
<li class="col-products">
<div class="product-col">
<div class="img">
<a href="electricity.php"><img src="../../images/elect.jpg" class="img-responsive" title="la réparation de tous ce qui éléctrique est selon vos demandes" width="200" height="200" /></a>
</div>
<div class="sale-label">Meilleur</div>
<div class="prod-info">
<h5><a class="product-name name" href="electricity.php">la réparation de tous ce qui éléctrique est...</a></h5>
<div class="price">
<strong> <span class="productSpecialPrice">100-200 dt </span></strong> </div>
</div>
</div>
</li>
<li class="col-products">
<div class="product-col">
<div class="img">
<a href="peint.php"><img src="../../images/peint.jpg" class="img-responsive" title="la peinture est selon votre espaces " width="200" height="200" /></a>
</div>
<div class="sale-label">Meilleur</div>
<div class="prod-info">
<h5><a class="product-name name" href="peint.php">mentionnez votre espaces , nous avons tous les couleurs...</a></h5>
<div class="price">
<strong> <span class="productSpecialPrice">300-3000 dt</span></strong> </div>
</div>
</div>
</li>
<li class="col-products">
<div class="product-col">
<div class="img">
<a href="plomb.php"><img src="../../images/plomb.jpg" class="img-responsive" title="le service plomberie est ..." width="200" height="200" /></a> </div>
<div class="sale-label">Meilleur</div>
<div class="prod-info">
<h5><a href="plomb.php">le service plomberie est selon vos demandes ...</a></h5>
<div class="price">
<strong> <span class="productSpecialPrice">50-200dt</span></strong> </div>
</div>
</div>
</li>
<li class="col-products">
<div class="product-col">
<div class="img">
<a href="resto.php"><img src="../../images/resto.jpg" class="img-responsive" title="le service restauration est une réparation de tous les matériaux de la cuisine" width="200" height="200" /></a> </div>
<div class="sale-label">Meilleur</div>
<div class="prod-info">
<h5><a class="product-name name" href="resto.php">nous réparons les fours,les frigidaires...</a></h5>
<div class="price">
<strong> <span class="productSpecialPrice">100-500dt</span></strong> </div>
</div>
</div>
</li>
<div> <strong><a href="ID.php">Suivez le déroulement de votre Service</a></strong></div>
</ul>
<li class="quicklinks-li"><a class="drop">Liens Rapides</a><span class="label"></span><!-- bof quick links -->
<div class="dropdown col-2 ">
<div class="firstcolumn">
<nav>
<ul class="ez-menu">
<li class=" first">
<a href="http://localhost/views/touslesP1.php">
<span>Tous les produits</span>
</a>
</li>
<li class=" ">
<a href="http://localhost/views/alaune.php">
<span>A la une</span>
</a>
</li>
<li class=" ">
<a href="http://localhost/views/contacts.php">
<span>Nous contacter</span>
</a>
</li>
<li class=" last ">
<a href="http://localhost/views/faq.php">
<span>FAQ</span>
</a>
</li>
</ul>
</nav>
</div>
</div>
</li><!-- eof quick links -->
<li class="manufacturers-li"><a class="drop">Les Equipementiers<span class="label"></span></a><!--bof shop by brand -->
<div class="dropdown col-3">
<div class="firstcolumn">
<ul >
<li ><a href="http://livedemo00.template-help.com/zencart_55417/index.php?main_page=index&manufacturers_id=3"><img src="../../images/manufacturers/logo_bosch.png" class="img-responsive" alt="Bosch" title=" Bosch " width="1024" height="242" /></a></li>
<li ><a href="http://livedemo00.template-help.com/zencart_55417/index.php?main_page=index&manufacturers_id=1"><img src="../../images/manufacturers/logo_gerber.png" class="img-responsive" alt="Gerber" title=" Gerber " width="724" height="724" /></a></li>
<li ><a href="http://livedemo00.template-help.com/zencart_55417/index.php?main_page=index&manufacturers_id=2"><img src="../../images/manufacturers/logo_viessmann.png" class="img-responsive" alt="Viessmann" title=" Viessmann " width="3390" height="1129" /></a></li>
</ul>
</div>
</div>
</li><!-- eof shop by brand -->
<li class="information-li"><a class="drop">Infos<span class="label"></span></a><!-- bof information -->
<div class="dropdown col-3">
<h3>En Général</h3>
<ul>
<li><a href="http://localhost/views/architecture.php">Architecture du site</a></li>
<li><a href="http://localhost/views/faq.php">FAQ</a></li>
<li><a href="http://localhost/views/coupon.php">Utiliser un code</a></li>
<li><a href="http://localhost/views/nl.php">Se désabonner de la Newsletter</a></li>
</ul>
<div class="clearfix"></div>
<h3 class="second">Client</h3>
<ul>
<li><a >Se connecter</a></li>
<li><a>Créer un compte</a></li>
<li><a >Nous contacter</a></li>
<li><a>Livraison & Réclamation</a></li>
<li><a >Asisstance confidentialité</a></li>
<li><a >Conditions d'utilisation</a></li>
</ul>
</div>
</li><!-- eof information -->
<li class="customer_service"><a class="drop">Livraison & Réclamation<span class="label"></span></a><!-- bof customer service -->
<div class="dropdown col-5">
<div class="col_cs">
<h3>Livraison</h3>
</div>
<div class="col_cs">
<p>Après confirmation de commande, la Société s’engage à livrer à son transporteur toutes les références commandées par l’acheteur et ce dans les délais les plus courts. Ce transporteur s’engage, par contrat avec la Société, à livrer la commande à l’adresse de livraison renseignée par le Client, et fournie au transporteur par la Société </p>
</div>
<div class="col_cs">
<h3>Réclamation</h3>
</div>
<div class="col_cs">
<p>Il appartient au Client de vérifier le contenu du colis au moment de la livraison et de formuler les réserves, le cas échéant, sur le bordereau de livraison en présence du transporteur. Ces réserves devront être adressées à la Société, dans un délai de 2 jours ouvrés à compter du lendemain de la date de livraison du colis, à défaut de quoi le droit à la réclamation cessera d’être acquis :
par email à [email protected]
ou par fax au 01 46 49 10 81 </p>
</div>
</div><!-- eof customer service -->
</li>
</ul><!-- eof mega-menu -->
</div><!-- eof mega-wrapper -->
<!--eof-mega menu display-->
<div class="clearBoth"></div>
</div>
</div>
</div>
</div>
</div>
</header>
<!-- ========== CATEGORIES TABS ========= -->
<!-- ==================================== -->
<!-- ============================ -->
<div class="slider">
<!-- begin edit for ZX Slideshow -->
<script>
jQuery(window).load(function() {
jQuery('#slider').nivoSlider({
effect: 'fold',
animSpeed: 500,
pauseTime: 4000,
directionNav: true,
directionNavHide: true,
controlNav: false,
pauseOnHover: true,
captionOpacity: 0.8 });
});
</script>
</div>
<section id="main-content">
<section class="ie9_all">
<div class="container">
<div class="container">
<div class="row">
<div class="col-xs-12">
<div class="col-xs-12">
<br>
<br>
<br>
<br>
<div id="navBreadCrumb" class="breadcrumb"> <a class="home" href="../../index.php"></a>
<span> Suivie de votre Service</span>
</div>
</div>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<div class="main-col
left_column col-sm-12 ">
<div class="row">
<div class="center_column col-xs-12
col-sm-12 with_col ">
<div class="centerColumn" id="shoppingCartDefault">
<div class="heading"><h1>Tableau de Suivie</h1>
<form name="ID" method="POST" onsubmit="return verifForm(this)">
<input type="text" name="IDs" onblur="verifnom(this)">
<input type="submit" name="code" value="valider">
<?PHP
if (isset($_POST['IDs']))
{
$aff=new servAdminCore();
$listaa=$aff->recupererServ($_POST['IDs']);
?>
<table cellpadding="0" cellspacing="0" border="0" class="display table table-bordered" id="hidden-table-info">
<tr>
<th>ID</th>
<th>nom Technicien</th>
<th>etat</th>
</tr>
<form method="POST" >
<?PHP
foreach($listaa as $row){
?>
<tr>
<input type="hidden" name="ID" value="<?PHP echo $row['ID']; ?>">
<td><?PHP echo $row['ID']; ?></td>
<td><?PHP echo $row['nomTech']; ?></td>
<td><?PHP echo $row['etat']; ?></td>
</tr>
</table>
<?PHP } ?>
<?PHP } ?>
</form>
</form>
<br>
<br>
<br>
</div>
</div> </div> </div> </div>
</section>
<footer>
<div class="footer-container">
<div class="container">
<div class="row">
<div class="footer-menu col-xs-12 col-sm-3">
<h2 class="title_btn1">Liens Rapides</h2>
<div class="ezpagesFooterCol col1" style="width: 100%">
<ul>
<li><a href="http://localhost/views/mainpage1.php" class="activeILPage">Home</a></li>
<li><a href="http://localhost/views/touslesP1.php">Tous les produits</a></li>
<li><a href="http://localhost/views/alaune.php">A la une</a></li>
<li><a href="http://localhost/views/contacts.php">Nous contacter</a></li>
<li><a href="http://localhost/views/faq.php">FAQ</a></li>
</ul>
</div> </div>
<div class="account col-xs-12 col-sm-3 mb">
<h2 class="title_btn2">Client</h2>
<ul class="account_list">
<li><a >Se connecter</a></li>
<li><a >Créer un compte</a></li>
<li><a >Livraison & Réclamation</a></li>
<li><a >Assisstance confidentialité</a></li>
<li><a >Conditions d'utilisation</a></li>
</ul>
</div>
<div class="social col-xs-12 col-sm-3 mb">
<h2 class="title_btn3">Suivez nous</h2>
<ul class="social_list">
<li><a href="http://www.facebook.com">Facebook</a></li>
<li><a href="http://www.twitter.com">Twitter</a></li>
<li><a href="#">RSS</a></li>
</ul>
</div>
<div class="contact-block col-xs-12 col-sm-3 mb">
<h2 class="title_btn4">Nous contacter</h2>
<div class="contact_list">
<p>3 Rue de la Galité <br/>
Ben Arous</p>
<div class="phone">
(00216) 98963635 </div>
</div>
</div>
<div><!-- {%FOOTER_LINK} --></div>
</div>
<div class="back_to_top"><a href="#"></a></div>
</div>
</div>
<div class="copyright">
<div class="container">
<div class="row">
<div class="col-xs-12">
<!-- ========== COPYRIGHT ========== -->
<p>Copyright © 2019 <a href="http://livedemo00.template-help.com/zencart_55417/index.php?main_page=index" target="_blank">STMG</a>. Powered by <a href="https://www.facebook.com/Dead-Rabbits-411527309699011/?modal=admin_todo_tour" target="_blank">Dead Rabbits.</a>
</p>
<!-- =============================== -->
</div>
</div>
</div>
</div>
</footer>
<!-- ============================ -->
<!-- ========================================= -->
<!-- ========== CATEGORIES TABS ========= -->
<!-- ==================================== -->
<!-- ============================ -->
<script type="text/javascript">
function surligne(champ, erreur)
{
if(erreur)
champ.style.backgroundColor = "#fba";
else
champ.style.backgroundColor = "";
}
function verifnom(champ)
{
if(champ.value.length < 1 || champ.value.length > 50000)
{
surligne(champ, true);
return false;
}
else
{
surligne(champ, false);
return true;
}
}
function verifForm(f)
{
var pseudoOk = verifnom(f.IDs);
if(pseudoOk )
return true;
else
{
alert("Veuillez remplir correctement tous les champs");
return false;
}
}
</script>
</body>
</html>