Annuaire-associations

[insert_php]

/*
if(session_id() ==  ») {
session_start();}

if( isset($_SESSION[« searchAssociation »]) ){
echo « there is a search session »;

$searchResult = $_SESSION[‘searchAssociation’];
$searchResult = unserialize($searchResult);

require_once $_SERVER[‘DOCUMENT_ROOT’] . ‘/com/agate/classes/association.php’ ;
}else{

echo « No search session »;
}
*/

[/insert_php]


[insert_php]

$defaultName = « % »;
$defaultTown = «  »;

if(isset($_GET[« name_ »])){
$defaultName = $_GET[« name_ »];
}

if(isset($_GET[« name_ »])){
$defaultTown = $_GET[« town_ »];
}

[/insert_php]

Raison sociale / Abréviation Ville
Soumettre une association

[insert_php]

$debug = isset($_GET[« debug »]);

if( isset($_GET[« action »]) && $_GET[« action »]== »searchAssociation » && isset($_GET[« name_ »]) && isset($_GET[« town_ »]) ){
//proceed search
//require_once $_SERVER[‘DOCUMENT_ROOT’] . ‘/com/agate/connect_dataBase.php’ ;
$nbParams = 0;

$name2 = $_GET[« name_ »];
$query = « select id, name, target, adress, website, facebook, tel, email from agt_annuaire_association where status=’validated’ « ;

if(!empty($_GET[« name_ »])){
$query = $query. » and (name like ‘ ».$name2. »%’ or abrev like ‘ ».$name2. »%’)  » ;
$nbParams ++;
}

if(!empty($_GET[« town_ »])){
$query = $query. » and town like ‘% ».$_GET[« town_ »]. »%’  » ;
$nbParams ++;
}

$query = $query. » order by name asc  » ;

if($debug==true){
echo $query;
echo « 
« ;
}

$found = false;
$i = 0;

if($nbParams>0){
$res = mysql_query($query);
if ($nr = mysql_num_rows($res))
{
if($debug==true){
echo « nr = « .$nr;
echo « 
« ;
}
//require_once $_SERVER[‘DOCUMENT_ROOT’] . ‘/com/agate/classes/association.php’ ;
echo « 

« ;
echo « 

« ;
while($element = mysql_fetch_array($res))
{
$i++;
$site = $element[« website »];
$date = date(« d/m/Y »);
$id = $element[« id »];
$detail = « http://agate-toulouse.com/detail-association?pid=$date&&assoid=$id&action=detail » ;
$fbook= $element[« facebook »];
//init association
//$asso = new association();
echo « 

« ;
echo « 

« ;
echo « 

« ;
echo « 

« ;
$found = true;
}
if(!$found){
echo « 

« ;
}
echo « 

Raison sociale
« .$i. » « .$element[« name »]. »
Aucun résultat trouvé pour la recherche: $name2 $town2

« ;

}

}else{
echo « 

Veuillez remplir un des champs de recherche au moins

« ;
if($debug==true){
echo « Nb params –> « .$nbParams;
}
}

}

[/insert_php]