46 lines
1.5 KiB
PHP
Executable File
46 lines
1.5 KiB
PHP
Executable File
<?php
|
|
/**
|
|
* Script cherchant les annonces promotionnelles pour une recherche lancée par un administrateur
|
|
* Les éventuels résultats sont listés pour sélection
|
|
* Peut être appelé en ajax ou directement en php si JS désactivé
|
|
*
|
|
**/
|
|
$form["recherche"]=trim($_POST["recherche"]);
|
|
$ajax_on=false;
|
|
if(!empty($_POST["ajax"]))
|
|
{
|
|
$ajax_on=true;
|
|
session_save_path(SESSIONS_REP);
|
|
ini_set("session.use_only_cookies",1);
|
|
session_start();
|
|
header('Content-Type: text/html; charset=utf-8');
|
|
require_once("../modele/FclFlux_annonces.php");
|
|
}
|
|
if(empty($form["recherche"]))
|
|
$select=get_html_alerte_msg((array) ERREUR_UTILISA_CHAMPS_ABSENTS);
|
|
else
|
|
{
|
|
if($_SESSION["statut"]!="administrateur")
|
|
$select=get_html_alerte_msg((array) ERREUR_IMPREVUE);
|
|
else
|
|
{
|
|
if(empty($Bd))
|
|
require("../modele/connexion-bd.php");
|
|
$annonces=FclFlux_annonce::recherche_globale($form["recherche"],"id_annonce,titre");
|
|
$Bd=null;
|
|
if(!empty($annonces))
|
|
{
|
|
$select="<div class='form-group'>
|
|
<label for='liste_annonces'>".count($annonces)." résultat(s) correspondant</label>
|
|
<select name='liste_annonces' id='liste_annonces' autofocus class='form-control'>
|
|
<option value='0'></option>";
|
|
foreach ($annonces as $annonce_info)
|
|
$select.="<option value='".$annonce_info["id_annonce"]."'>".htmlentities(affiche_utf8($annonce_info["titre"],UTF8_OK))."</option>\n";
|
|
$select.="</select></div>";
|
|
}
|
|
else
|
|
$select=get_html_alerte_msg((array) ERREUR_SQL_RECHERCHE);
|
|
}
|
|
}
|
|
if((!empty($select))&&($ajax_on))
|
|
echo $select; |