/[openfoncier]/trunk/dyn/comboaffichage.inc.php
ViewVC logotype

Contents of /trunk/dyn/comboaffichage.inc.php

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1315 - (show annotations)
Wed Mar 6 11:28:52 2013 UTC (11 years, 10 months ago) by fmichon
File size: 1571 byte(s)
Suppression d'accents et modification de l'encodage et des caractères de fin de ligne de certains fichiers => utf-8

1 <?php
2 //$Id: comboaffichage.inc,v 1.3 2008-06-26 09:18:41 jbastide Exp $
3 // =========================================================================
4 // Affectation des paramètres spécifiques applications pour COMBO.PHP 1.1
5 // Retour lorsqu il y a plusieurs enregistrements correlles
6 // choix dans le SELECT
7 // $x=$row[$zoneCorrel]; // retour dans la zone correllée
8 // $y=$row[$zoneOrigine] // retour dans la zone origine
9 // il est possible de renvoyer d autre zone dans le formulaire
10 // il est possible d afficher d autre zone de la table en combo
11 // =========================================================================
12 /*
13 if($champOrigine=="nom"){
14 $aff=$row['client']." - ".$row['nom']." ".$row['prenom'];
15 $y=$row['nom'];
16 $a=$row['prenom'];
17 $b=$row['adresse1'];
18 $c=$row['adresse2'];
19 $d=$row['cp'];
20 $e=$row['ville'];
21 $f=$row['titre'];
22 }
23 */
24
25 if($champOrigine=="parcelle"){
26 $aff=$row['parcelle']." - ".$row['nom'];
27 $x=$row['nom'];
28
29 }
30 if($champOrigine=="nom"){
31 $aff=$row['parcelle']." - ".$row['nom'];
32 $y=$row['nom'];
33 }
34
35 if($champOrigine=="architecte") {
36 $aff=$row['nom']." ".$row['prenom'].
37 " ".$row['adresse']." ".$row['cp']." ".$row['ville'];
38 $x=$row['nom']." ".$row['prenom'];
39 }
40 if($champOrigine=="architecte_nom") {
41 $aff=$row['nom']." ".$row['prenom'].
42 " ".$row['adresse']." ".$row['cp']." ".$row['ville'];
43 }
44 if($champOrigine=="parcelle_lot_lotissement") {
45 $aff=$row['numero']." ".$row['lotissement'].
46 " ".$row['surface'];
47 $y= $row['lotissement']." lot ".$row['numero'];
48 }
49 ?>

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26