Subversion Repositories Sites.tela-botanica.org

Rev

Rev 181 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 181 Rev 187
Line 134... Line 134...
134
        else {
134
        else {
135
            $res.="<tr class=\"ligne_paire\">\n";
135
            $res.="<tr class=\"ligne_paire\">\n";
136
            $indic=0;
136
            $indic=0;
137
        }
137
        }
138
        $res.="<td><input type=\"checkbox\" name=\"select[]\" value=\"".$ligne[ANN_CHAMPS_MAIL]."\"></td>\n
138
        $res.="<td><input type=\"checkbox\" name=\"select[]\" value=\"".$ligne[ANN_CHAMPS_MAIL]."\"></td>\n
139
                        <td>".$ligne[ANN_CHAMPS_NOM]."&nbsp;</td>\n
139
                        <td>".strtoupper($ligne[ANN_CHAMPS_NOM])."&nbsp;</td>\n
140
                        <td>".$ligne[ANN_CHAMPS_PRENOM]."&nbsp;</td>\n
140
                        <td>".str_replace(' - ', '-', ucwords(strtolower(str_replace('-', ' - ', $ligne[ANN_CHAMPS_PRENOM]))))."&nbsp;</td>\n
141
                        <td>".date("d m Y", strtotime($ligne[ANN_CHAMPS_DATE_INS]))."&nbsp;</td>\n
141
                        <td>".date("d m Y", strtotime($ligne[ANN_CHAMPS_DATE_INS]))."&nbsp;</td>\n
142
                        <td>".$ligne[ANN_CHAMPS_VILLE]."&nbsp;</td>\n" ;
142
                        <td>".strtoupper($ligne[ANN_CHAMPS_VILLE])."&nbsp;</td>\n" ;
143
        $res .= "</tr>\n";
143
        $res .= "</tr>\n";
144
    }
144
    }
145
    $res .= "</table></div>\n";
145
    $res .= "</table></div>\n";
146
    return $res ;
146
    return $res ;
147
}
147
}