Subversion Repositories eFlore/Archives.eflore-consultation-v2

Rev

Rev 127 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
59 jpm 1
<?php
2
/*vim: set expandtab tabstop=4 shiftwidth=4: */
3
// +------------------------------------------------------------------------------------------------------+
4
// | PHP version 4.3                                                                                      |
5
// +------------------------------------------------------------------------------------------------------+
6
// | Copyright (C) 2004 Tela Botanica (accueil@tela-botanica.org)                                         |
7
// +------------------------------------------------------------------------------------------------------+
8
// | This file is part of eFlore-consultation.                                                            |
9
// |                                                                                                      |
10
// | Foobar is free software; you can redistribute it and/or modify                                       |
11
// | it under the terms of the GNU General Public License as published by                                 |
12
// | the Free Software Foundation; either version 2 of the License, or                                    |
13
// | (at your option) any later version.                                                                  |
14
// |                                                                                                      |
15
// | Foobar is distributed in the hope that it will be useful,                                            |
16
// | but WITHOUT ANY WARRANTY; without even the implied warranty of                                       |
17
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the                                        |
18
// | GNU General Public License for more details.                                                         |
19
// |                                                                                                      |
20
// | You should have received a copy of the GNU General Public License                                    |
21
// | along with Foobar; if not, write to the Free Software                                                |
22
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA                            |
23
// +------------------------------------------------------------------------------------------------------+
24
// CVS : $Id: eflore_recherche_taxonomie.inc.php,v 1.1 2004-12-23 20:05:17 jpm Exp $
25
/**
26
* Affichage du moteur de recherche taxonomique et de ses résultats.
27
*
28
* Ce script fournit le code html correspondant aux moteurs de recherche taxonomique (par projet) et ses
29
* résultats.
30
*
31
*@package eFlore
32
//Auteur original :
33
*@author        Jean-Pascal MILCENT <jpm@tela-botanica.org>
34
//Autres auteurs :
35
*@author        Aucun
36
*@copyright     Tela-Botanica 2000-2004
37
*@version       $Revision: 1.1 $ $Date: 2004-12-23 20:05:17 $
38
// +------------------------------------------------------------------------------------------------------+
39
*/
40
 
41
// +------------------------------------------------------------------------------------------------------+
42
// |                                            ENTÊTE du PROGRAMME                                       |
43
// +------------------------------------------------------------------------------------------------------+
44
 
45
 
46
// +------------------------------------------------------------------------------------------------------+
47
// |                                            CORPS du PROGRAMME                                        |
48
// +------------------------------------------------------------------------------------------------------+
49
/*
50
<h2> Rechercher par projet </h2>
51
 
52
<form method="post" action="/" name="eflore_form_taxonomie">
53
  <fieldset>
54
    <legend>Rechercher par projet</legend>
55
    <ul>
56
      <li>
57
        <select name="Projets">
58
          <option>BDNFF</option>
59
          <option>Flore de la R&eacute;union</option>
60
          <option>Flore de Guadeloupe et Martinique</option>
61
          <option>Curcubitaceae du monde</option>
62
        </select>
63
        <select name="Rang d&eacute;part">
64
          <option>R&eacute;gne</option>
65
          <option>Famille</option>
66
          <option>Genre</option>
67
        </select>
68
      </li>
69
      <li>
70
        <p>
71
          <a href="/a">A</a> |
72
          <a href="/b">B</a> |
73
          <a href="/c">C</a> |
74
          <a href="/d">D</a> |
75
          <a href="/e">E</a> |
76
          <a href="/f">F</a> |
77
          <a href="g">G</a> |
78
          <a href="/h">H</a> |
79
          <a href="/i">I</a> |
80
          <a href="/j">J</a> |
81
          K |
82
          L |
83
          <a href="/m">M</a> |
84
          N | O | P | Q | R | S | T | U | V | W | X | Y | Z | Tous
85
        </p>
86
      </li>
87
    </ul>
88
  </fieldset>
89
</form>
90
*/
91
/* +--Fin du code ----------------------------------------------------------------------------------------+
92
*
93
* $Log: not supported by cvs2svn $
94
*
95
* +-- Fin du code ----------------------------------------------------------------------------------------+
96
*/
97
?>