Subversion Repositories Sites.tela-botanica.org

Rev

Rev 208 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 208 Rev 258
Line 148... Line 148...
148
            else {
148
            else {
149
                $res.="<tr class=\"ligne_paire\">\n";
149
                $res.="<tr class=\"ligne_paire\">\n";
150
                $indic=0;
150
                $indic=0;
151
            }
151
            }
152
            $res.="<td><input type=\"checkbox\" name=\"select[]\" value=\"".$ligne[CAR_CHAMPS_MAIL]."\" /></td>
152
            $res.="<td><input type=\"checkbox\" name=\"select[]\" value=\"".$ligne[CAR_CHAMPS_MAIL]."\" /></td>
153
                            <td>".$ligne[CAR_CHAMPS_NOM]."&nbsp;</td>
153
                            <td>".strtoupper($ligne[CAR_CHAMPS_NOM])."&nbsp;</td>\n
154
                            <td>".$ligne[CAR_CHAMPS_PRENOM]."&nbsp;</td>
154
                        	<td>".str_replace(' - ', '-', ucwords(strtolower(str_replace('-', ' - ', $ligne[CAR_CHAMPS_PRENOM]))))."&nbsp;</td>\n
155
                            <td>".date("d m Y", strtotime($ligne[CAR_CHAMPS_DATE_INS]))."&nbsp;</td>
155
                            <td>".date("d m Y", strtotime($ligne[CAR_CHAMPS_DATE_INS]))."&nbsp;</td>
156
                            <td>".$ligne[CAR_CHAMPS_REGION]."&nbsp;</td>
156
                            <td>".str_replace(' - ', '-', ucwords(strtolower(str_replace('-', ' - ', $ligne[CAR_CHAMPS_REGION]))))."&nbsp;</td>
157
                            <td>".$ligne[CAR_CHAMPS_VILLE]."&nbsp;</td>\n" ;
157
                            <td>".strtoupper($ligne[CAR_CHAMPS_VILLE])."&nbsp;</td>\n";
158
            $res .= "</tr>\n";
158
            $res .= "</tr>\n";
159
        }
159
        }
160
        $res .= "</table></div>\n";
160
        $res .= "</table></div>\n";
Line 161... Line 161...
161
        
161