13 lines
439 B
PHP
Executable File
13 lines
439 B
PHP
Executable File
<?php
|
|
$typeDeRecherche ='';
|
|
if (!empty($_POST['afficheRes'])) {$afficheRes=$_POST['afficheRes'];}
|
|
else
|
|
{if (!empty($_GET['afficheRes'])) {$afficheRes=$_GET['afficheRes'];} }
|
|
|
|
if (isset($_POST['idCat'])) {$idCat=$_POST['idCat'];}
|
|
|
|
if (isset($_GET['typeDeRecherche'])) {$typeDeRecherche=$_GET['typeDeRecherche'];}
|
|
if (isset($_POST['typeDeRecherche'])) {$typeDeRecherche=$_POST['typeDeRecherche'];}
|
|
|
|
include ("gondole.post.php");
|
|
?>
|