User Tools

Site Tools


programming:web:table

FIXME

        $str="";
 
        $id='affectionList';
        $class='affectionList';
 
        $str.='<table ';
        $str.='class="'.$class.'" ';
        $str.='id="'.$id.'_table" ';
        $str.='>';
 
        $str.='<colgroup class="'.$class.'">';
        $str.='<col class="'.$class.'_c1">';
        $str.='<col class="'.$class.'_c2">';
        $str.='<col class="'.$class.'_c3">';
        $str.='<col class="'.$class.'_c4">';
        $str.='</colgroup>';
 
 
        $str.='<thead ';
        $str.='id="'.$id.'_thead" ';
        $str.='class="'.$class.'" ';
        $str.='>';
        $str.='<tr>';
        $str.='<th scope="col">';#1
        $str.=_('Affection');
        $str.='&nbsp;';
        $str.=_('N&deg;');
        $str.='</th>';
        $str.='<th scope="col">';#2
        $str.=_('Primary Affection');
        $str.='</th>';
        $str.='<th colspan="2" scope="col">';#3-4
        $str.=_('Secondary Affection');
        $str.='</th>';
        $str.='</tr>';
        $str.='</thead>';
 
        $str.='<tfoot ';
        $str.='id="'.$id.'_tfoot" ';
        $str.='class="'.$class.'" ';
        $str.='>';
        $str.='<tr>';
        $str.='<td colspan="4">';
        $str.='&copy; IRO';
        $str.='</td>';
        $str.='</tr>';
        $str.='</tfoot>';
 
        $str.='<tbody ';
        $str.='id="'.$id.'_tbody" ';
        $str.='class="'.$class.'" ';
        $str.='>';
 
        $i=0;
        $affection=array("Motility Anomalia"=>"Strabismus","Glaucoma"=>"Congenital");
 
        if(!empty($affection))
        foreach ($affection as $key=>$value){
                $i++;
 
                $str.='<tr>';
                $str.='<td>';#1
                $str.=$i;
                $str.='</td>';
                $str.='<td>';#2
                $str.=$key;
                $str.='</td>';
                $str.='<td colspan="2">';#3-4
                $str.=$value;
                $str.='</td>';
                $str.='</tr>';
        }
 
        $str.='</tbody>';
        $str.='</table>';
programming/web/table.txt · Last modified: 2011/08/15 08:04 by sbolay