Coucou tout le monde

J'ai deux soucis dans mon code et je n'arrive pas a trouver de solution

L'insertion d'un goodie
Dans ma page panier (cart.php) j'ai ajouté des goodies que les utilisateurs pourront ajouter en un clic dans leur panier
Le problème est que lorsque je clic sur le bouton j'ai un message d'erreur sur l'affichage : Fatal error: Call to a member function fetch() on boolean in C:\wamp\www\lu\cart.php on line 333

Pourtant, lorsque je suis dans la page produits que j'ouvre un produit individuel pour le consulter et que je clique sur "ajouter au panier", le code fonctionne correctement (il s'agit du même code d'affichage)
A l'origine j'avais mis mon form directement dans le while, ca fonctionnait mais ca ajoutait tous les goodies (forcément..)
Actuellement je n'arrive pas a récupérer l'id du goodies et je suis un peu perdue

La suppression d'un élément du panier
De même lorsque je clique sur supprimer un produit, j'ai encore la même erreur à la même ligne : Fatal error: Call to a member function fetch() on boolean in C:\wamp\www\lu\cart.php on line 333

Pour ces deux erreurs, je vois qu'il n'arrive pas à récupérer l'id mais je n'arrive pas à trouver une solution pour résoudre l'erreur

Voici le code pour les éventuels courageux :


Code : Sélectionner tout - Visualiser dans une fenêtre à part
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
<?php
	include("connect.php");
	session_start();
?>
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>Toto</title>
    
    <!-- Google Fonts -->
    <link href='http://fonts.googleapis.com/css?family=Titillium+Web:400,200,300,700,600' rel='stylesheet' type='text/css'>
    <link href='http://fonts.googleapis.com/css?family=Roboto+Condensed:400,700,300' rel='stylesheet' type='text/css'>
    <link href='http://fonts.googleapis.com/css?family=Raleway:400,100' rel='stylesheet' type='text/css'>
    
    <!-- Bootstrap -->
    <link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
    
    <!-- Font Awesome -->
    <link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
    
    <!-- Custom CSS -->
    <link rel="stylesheet" href="css/owl.carousel.css">
    <link rel="stylesheet" href="style.css">
    <link rel="stylesheet" href="css/responsive.css">

    <!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
    <!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
    <!--[if lt IE 9]>
      <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
      <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
    <![endif]-->
  </head>
  <body>
   
    <div class="header-area">
        <div class="container">
            <div class="row">
                <div class="col-md-8">
				<ul class="list-unstyled list-inline">
                            <li class="dropdown dropdown-small">
					<?php
						if (isset($_SESSION['nom']))
						{
							echo 'Bienvenue ', $_SESSION['prenom'];								
						}
					?>   
					</li>
					</ul>
                </div>
                <div class="col-md-4">
                    <div class="header-right">
                        <ul class="list-unstyled list-inline">
                            <li class="dropdown dropdown-small">
								<?php
									if (isset($_SESSION['nom']))
									{
										echo "<li><a href='account-user.php'><i class='fa fa-user'></i> Mon compte </a></li>";
										echo "<li><a href='deconnect-user.php'><i class='fa fa-user'></i> Deconnexion </a></li>";
									}
									else
									{
										echo "<li><a href='connect-user.php'><i class='fa fa-user'></i> Connexion </a></li>";
										echo "<li><a href='add-user.php'><i class='fa fa-heart'></i> Inscription</a></li>";
									}
								?>
                            </li>
                        </ul>
                    </div>
                </div>
            </div>
        </div>
    </div> <!-- End header area -->
    
    <div class="site-branding-area">
        <div class="container">
            <div class="row">
                <div class="col-sm-6">
                    <div class="logo">
                        <h1><a href="index.php" style="color:red";><span>Tot</span>'r</a></h1>
                    </div>
                </div>
				
				<?php
					$Produits = 0;
					if(isset($_SESSION['panier']))
					{
						for ( $i = 0; $i < count($_SESSION['panier']); $i++)
						{
							if ( $_SESSION['panier'][$i] != null )
								$Produits++;
						}
					}
				?>
							
                <div class="col-sm-6">
                    <div class="shopping-item">
					<?php
						if (isset($_SESSION['panier']))
						{
							?>  <a href="cart.php"><span class="cart-amunt">Panier</span> <i class="fa fa-shopping-cart"></i> <span class="product-count"><?php print_r ($Produits); ?></span></a>  <?php
						}
						else
						{
							echo '<a href="cart.php"><span class="cart-amunt">Panier</span> <i class="fa fa-shopping-cart"></i></a>';
						}
					?>
                        
                    </div>
                </div>
            </div>
        </div>
    </div> <!-- End site branding area -->
    
    <div class="mainmenu-area">
        <div class="container">
            <div class="row">
                <div class="navbar-header">
                    <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
                        <span class="sr-only">Toggle navigation</span>
                        <span class="icon-bar"></span>
                        <span class="icon-bar"></span>
                        <span class="icon-bar"></span>
                    </button>
                </div> 
                <div class="navbar-collapse collapse">
                    <ul class="nav navbar-nav">
                        <li><a href="index.php">Accueil</a></li>
                        <li><a href="shop.php">Produits</a></li>
                        <li><a href="services.php">Detailing</a></li>
                        <li><a href="news.php">Actualit&eacute;s</a></li>
                        <li><a href="contact.php">Contact</a></li>
                    </ul>
                </div>  
            </div>
        </div>
    </div> <!-- End mainmenu area -->
    
    <div class="product-big-title-area">
        <div class="container">
            <div class="row">
                <div class="col-md-12">
                    <div class="product-bit-title text-center">
                        <h2>Panier</h2>
                    </div>
                </div>
            </div>
        </div>
    </div>
    
	<?php
		$total = 0;
		
		if (isset($_POST['supprimer']))
		{
			for($i = 0; $i < count($_SESSION['panier']); $i++)
			{
				if ( $_SESSION['panier'][$i]['id_article'] ==  $_POST['cle_produit'] )  // On supprime le produit
				{
					$_SESSION['panier'][$i] = null;
					echo '<meta http-equiv="refresh" content="0;URL=cart.php">'; //Rafraichi la page au bout de 2sec
				}
			}
		}
												
		if (isset($_POST['diminuer_quantite']))
		{
			for($i = 0; $i < count($_SESSION['panier']); $i++)
			{
				if ( $_SESSION['panier'][$i]['id_article'] ==  $_POST['id_article'] ) // Si on trouve le produit dans le panier, alors on diminue de 1
				{
					$_SESSION['panier'][$i]['quantite'] -=1;
				}
			}
		}

		if (isset($_POST['augmenter_quantite']))
		{
			for($i = 0; $i < count($_SESSION['panier']); $i++)
			{
				if ( $_SESSION['panier'][$i]['id_article'] ==  $_POST['id_article'] ) // Si on trouve le produit dans le panier, alors on augmente de 1
				{
					$_SESSION['panier'][$i]['quantite'] +=1;
				}
			}
		}												

		if ( isset($_POST['ajouter_goodies']))
		{
			for ($u=0; $u<1; $u++) {
			if ( !isset($_SESSION['panier'])) // Si le panier n'éxiste pas, on le créé.
				$_SESSION['panier'] = array();
			echo $_POST['cle_goodies'];
				$find = false;
				for($i = 0; $i < count($_SESSION['panier']); $i++)
				{
					if ( $_SESSION['panier'][$i]['id_article'] ==  $_POST['cle_goodies'] ) // Si on trouve le produit dans le panier, alors on augmente la quantité
					{
						$_SESSION['panier'][$i]['quantite'] +=  1; // On ajoute la quantité voulue au panier
						$find = true;
					}
				}
				
				if ( $find == false) // Si la produit n'est pas encore en commande, alors on le rentre dans le panier
				{
					$new_product = array( "id_article" =>$_POST['cle_goodies'] , "quantite" => 1); // Créé un tableau contenant les informations de la commande ( produit et quantité )
					array_push($_SESSION['panier'], $new_product);
				}
			}
		}
		
		if(isset($_POST['valide_achat'])  && $Produits > 0)
		{
			if( isset ($_SESSION['cle_client']) &&  $_SESSION['cle_client']!="") 
			{
				$pdt = "";
				$qte = "";
				$date=date('Y-m-d');
				
				$res2 = "0";
				$req2="SELECT MAX(cle_panier) FROM panier "; // Creation de requete
				$res2=mysql_query($req2) or die(mysql_error()); //execution de la requete
				//echo $res2;
				$toto = mysql_fetch_array($res2);
				$cle_panier = $toto[0] + 1;
				//echo $toto[0];
				
				for($i = 0; $i < count($_SESSION['panier']); $i++)
				{				
					if ( $_SESSION['panier'][$i] == null )
						continue;
						
					//$req='insert into panier (cle_primaire, cle_panier, cle_client, cle_produit, qte, date) values (NULL, "'.$cle_panier.'", "'.$_SESSION['cle_client'].'", "'.$_SESSION['panier'][$i]['cle_produit'].'", "'.$_SESSION['panier'][$i]['quantite'].'","'.$date.'")'; //Insert dans la table contact les valeurs
					//$res=mysql_query($req) or die(mysql_error()); //execution de la requete
				}

				echo'Vos achats sont valid&eacute;s, vous allez &ecirc;tre redirig&eacute; vers le r&eacute;capitulatif de votre commande dans quelques secondes';
				echo '<meta http-equiv="refresh" content="2;URL=livraison.php">'; //Rafraichi la page au bout de 2sec
			
			}
			else
			{
			echo 'Pour effectuer vos achats veuillez vous identifier ou vous inscrire au site';
			?>
				<br>
				<ul>
				<li><a href="connect-user.php">Connexion</a></li>
				<li><a href="add-user.php">Inscription</a></li>
			<?php		
			}
		}											
	?>
    
    <div class="single-product-area">
        <div class="zigzag-bottom"></div>
        <div class="container">
            <div class="row">
                <div class="col-md-4" style=" height: 455px;">
                    <div class="single-sidebar" style=" height: 455px width: 35px;">
                        <h2 class="sidebar-title">Goodies</h2>
                        <div class="thubmnail-recent">
							<?php					
							$reponse = $bdd->query('SELECT * FROM article, promotion WHERE article.id_promo=promotion.id_promotion AND goodies=1');
							while ($donnees = $reponse->fetch())
							{
							echo'
                            <img src="img/product-thumb-1.jpg" class="recent-thumb" alt="">
                            <h2><a href="single-product.php">'.$donnees['titre_article'].'</a></h2>
                            <div class="product-sidebar-price">';
							$id = $donnees['id_article'];
								
							if(($donnees['id_promotion'])<>"4") 
							{
								echo '<br><del>' .$donnees['prix_article']. '€ </del>';	
								$reduction = (($donnees['prix_article']) * ($donnees['pourcentage_promotion'])) / 100;
								$prix = ($donnees['prix_article']) - $reduction;
								echo  '<ins>' .$prix. '€ </ins>';
							}
							else
							{
								echo '<ins>' .$donnees['prix_article']. '€ </ins>';
							}
							?>
						</div>
						
						<form method="POST" action="cart.php">
							<input type="hidden" name="cle_goodies" value= <?php $id ?>/>
							<input type="submit" name="ajouter_goodies" value="ajouter"/>					
						</form>
					</div>
					<div class="thubmnail-recent"></div>
					<?php } ?>
				</div>

                <div class="col-md-8">
                    <div class="product-content-right">
                        <div class="woocommerce">					
						<h2 class="sidebar-title">Produits</h2>
						<?php
						
						//print_r ($_SESSION['panier']);
						//print_r ($Produits);
						
						if (isset($_SESSION['panier']))
						{	

							echo '
							<form method="post" action="#">
								<table cellspacing="0" class="shop_table cart">
									<thead>
										<tr>
											<th class="product-remove">&nbsp;</th>
											<th class="product-name">Detailing</th>
											<th class="product-price">Prix</th>
											<th class="product-quantity">Quantit&eacute;</th>
											<th class="product-subtotal">Total</th>
										</tr>
									</thead>
									<tbody>
									';
										for($i = 0; $i < count($_SESSION['panier']); $i++)
										{
											$Produit = $_SESSION['panier'][$i];
											

											//echo 'id_article : '.$Produit['id_article'].'';
											
											$reponse = $bdd->query('SELECT * FROM article WHERE id_article='.$Produit['id_article'].'');
											//print_r($reponse);

											while ($donnees = $reponse->fetch())
											{
												$total_prix = $donnees['prix_article'] * $Produit['quantite'];
												echo '	
												<tr>
												<td class="product-remove">
													<form method="POST"  action="cart.php">
														<input type="hidden" name="cle_produit" value="'.$Produit['id_article'].'"/>
														<input type="submit" name="supprimer" value="x"/>					
													</form>
												</td>
												<td>'.$donnees['titre_article'].'</td> 
												<td>'.$donnees['prix_article'].' €</td>					
												<td class="product-quantity">
													<form method="POST" action="cart.php"> <!--  Modification la quantite -->
														<input type="hidden" name="id_article" value="'.$Produit['id_article'].'"/>
															<div class="quantity buttons_added">
																<input type="submit" name="diminuer_quantite" class="minus" value="-">
																<input type="number" size="4" class="input-text qty text" title="Qty" value="'.$Produit["quantite"].'" min="0" step="1">
																<input type="submit" name="augmenter_quantite" class="plus" value="+">
															</div>
														</td>
													</form>
												</td>
												<td>'.$total_prix.' €</td>
												</tr>
												';
												$total += $total_prix; //ajout prix du produit avec le prix total	
											}
										}
									echo'	
									</tbody>
								</table>
							</form>
							';
							

						}
						else
						{
							echo 'Aucun produit dans le panier';
							echo'<br><br><br><br>';
						}
						?>
							
						<h2 class="sidebar-title">Detailing</h2>
						<?php
						if (isset($_SESSION['panier']))
						{	
							echo '
							<form method="post" action="#">
								<table cellspacing="0" class="shop_table cart">
									<thead>
										<tr>
											<th class="product-remove">&nbsp;</th>
											<th class="product-name">Detailing</th>
											<th class="product-price">Prix</th>
											<th class="product-quantity">Quantit&eacute;</th>
											<th class="product-subtotal">Total</th>
										</tr>
									</thead>
									<tbody>
									';																				
										for($i = 0; $i < count($_SESSION['panier']); $i++)
										{
											$Produit = $_SESSION['panier'][$i];
											
											$reponse = $bdd->query('SELECT * FROM service WHERE id_service='.$Produit['id_article'].'');

											while ($donnees = $reponse->fetch())
											//if ($valeurs=@mysql_fetch_array($reponse))
											{
												$total_prix = $donnees['id_prix'] * $Produit['quantite'];
												echo '	
												<tr>
												<td class="product-remove">
													<form method="POST"  action="cart.php">
														<input type="hidden" name="cle_produit" value="'.$Produit['id_article'].'"/>
														<input type="submit" name="supprimer" value="x"/>					
													</form>
												</td>
												<td>'.$donnees['titre_service'].'</td> 
												<td>'.$donnees['id_prix'].' €</td>					
												<td class="product-quantity">
													<form method="POST" action="cart.php"> <!--  Modification la quantite -->
														<input type="hidden" name="id_article" value="'.$Produit['id_article'].'"/>
															<div class="quantity buttons_added">
																<input type="submit" name="diminuer_quantite" class="minus" value="-">
																<input type="number" size="4" class="input-text qty text" title="Qty" value="'.$Produit["quantite"].'" min="0" step="1">
																<input type="submit" name="augmenter_quantite" class="plus" value="+">
															</div>
														</td>
													</form>
												</td>
												<td>'.$total_prix.' €</td>
												</tr>
												';
												$total += $total_prix; //ajout prix du produit avec le prix total	
											}
										}
										echo'
										
										<tr class="cart_item">
											<td class="product-remove">
												<a title="Remove this item" class="remove" href="#">×</a> 
											</td>

											<td class="product-name">
												<a href="single-product.php">Ship Your Idea</a> 
											</td>

											<td class="product-price">
												<span class="amount">£15.00</span> 
											</td>

											<td class="product-quantity">
												<div class="quantity buttons_added">
													<input type="button" class="minus" value="-">
													<input type="number" size="4" class="input-text qty text" title="Qty" value="1" min="0" step="1">
													<input type="button" class="plus" value="+">
												</div>
											</td>

											<td class="product-subtotal">
												<span class="amount">£15.00</span> 
											</td>
										</tr>
									</tbody>
								</table>
							</form>
							';
						}
						else
						{
							echo 'Aucun detailing dans le panier';
							echo'<br><br><br><br>';
						}
						?>

                            <div class="cart-collaterals">
								<div class="cart_totals ">
									<h2>Total</h2>
									<table cellspacing="0">
										<tbody>
											<tr class="cart-subtotal">
												<th>Montant</th>
												<?php
													if (isset($_SESSION['panier'])) 
													{ ?> <td><span class="amount"><?php echo "" . $total . " €"; ?></span></td> <?php }
													else echo' <td><span class="amount">0 €</span></td>';
												?>
											</tr>
											<tr class="shipping">
												<th>Frais de port</th>
												<td>Gratuit</td>
											</tr>
											<tr class="order-total">
												<th>Total</th>
												<?php
													if (isset($_SESSION['panier'])) 
													{ ?> <td><span class="amount"><?php echo "" . $total . " €"; ?></span></td> <?php }
													else echo' <td><span class="amount">0 €</span></td>';
												?>	
											</tr>
										</tbody>
									</table>										
									<td class="actions" colspan="6">
										<form method="POST" action="cart.php"> <!--  Modification la quantite -->
											<input type="hidden" name="id_article" value="'.$Produit['id_article'].'"/>
											<div class="quantity buttons_added">
												<input type="submit" value="Paiement" name="valide_achat" class="checkout-button button alt wc-forward">
											</div>
										</form>	
									</td>										
								</div>
                            </div>
                        </div>                        
                    </div>                    
                </div>
				</div>
			</div>
		</div>
	</div>


    <div class="footer-top-area">
        <div class="zigzag-bottom"></div>
        <div class="container">
            <div class="row">
                <div class="col-md-3 col-sm-6">
                    <div class="footer-about-us">
                        <h2>e<span>Electronics</span></h2>
                        <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Perferendis sunt id doloribus vero quam laborum quas alias dolores blanditiis iusto consequatur, modi aliquid eveniet eligendi iure eaque ipsam iste, pariatur omnis sint! Suscipit, debitis, quisquam. Laborum commodi veritatis magni at?</p>
                        <div class="footer-social">
                            <a href="#" target="_blank"><i class="fa fa-facebook"></i></a>
                            <a href="#" target="_blank"><i class="fa fa-twitter"></i></a>
                            <a href="#" target="_blank"><i class="fa fa-youtube"></i></a>
                            <a href="#" target="_blank"><i class="fa fa-linkedin"></i></a>
                            <a href="#" target="_blank"><i class="fa fa-pinterest"></i></a>
                        </div>
                    </div>
                </div>
                
                <div class="col-md-3 col-sm-6">
                    <div class="footer-menu">
                        <h2 class="footer-wid-title">User Navigation </h2>
                        <ul>
                            <li><a href="#">My account</a></li>
                            <li><a href="#">Order history</a></li>
                            <li><a href="#">Wishlist</a></li>
                            <li><a href="#">Vendor contact</a></li>
                            <li><a href="#">Front page</a></li>
                        </ul>                        
                    </div>
                </div>
                
                <div class="col-md-3 col-sm-6">
                    <div class="footer-menu">
                        <h2 class="footer-wid-title">Categories</h2>
                        <ul>
                            <li><a href="#">Mobile Phone</a></li>
                            <li><a href="#">Home accesseries</a></li>
                            <li><a href="#">LED TV</a></li>
                            <li><a href="#">Computer</a></li>
                            <li><a href="#">Gadets</a></li>
                        </ul>                        
                    </div>
                </div>
                
                <div class="col-md-3 col-sm-6">
                    <div class="footer-newsletter">
                        <h2 class="footer-wid-title">Newsletter</h2>
                        <p>Sign up to our newsletter and get exclusive deals you wont find anywhere else straight to your inbox!</p>
                        <div class="newsletter-form">
                            <form action="#">
                                <input type="email" placeholder="Type your email">
                                <input type="submit" value="Subscribe">
                            </form>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </div> <!-- End footer top area -->
    
    <div class="footer-bottom-area">
        <div class="container">
            <div class="row">
                <div class="col-md-8">
                    <div class="copyright">
                        <p>&copy; 2015 eElectronics. All Rights Reserved. Coded with <i class="fa fa-heart"></i> by <a href="http://wpexpand.com" target="_blank">WP Expand</a></p>
                    </div>
                </div>
                
                <div class="col-md-4">
                    <div class="footer-card-icon">
                        <i class="fa fa-cc-discover"></i>
                        <i class="fa fa-cc-mastercard"></i>
                        <i class="fa fa-cc-paypal"></i>
                        <i class="fa fa-cc-visa"></i>
                    </div>
                </div>
            </div>
        </div>
    </div> <!-- End footer bottom area -->
   
    <!-- Latest jQuery form server -->
    <script src="https://code.jquery.com/jquery.min.js"></script>
    
    <!-- Bootstrap JS form CDN -->
    <script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
    
    <!-- jQuery sticky menu -->
    <script src="js/owl.carousel.min.js"></script>
    <script src="js/jquery.sticky.js"></script>
    
    <!-- jQuery easing -->
    <script src="js/jquery.easing.1.3.min.js"></script>
    
    <!-- Main Script -->
    <script src="js/main.js"></script>
  </body>
</html>