Jump to content
  • 0

Wyświetlanie cech w tabeli


And63

Question

W module do generowania pdf-ów z kartą katalogową mam taki kod:

foreach($features as $feature){
        {
            $html .= '<table style=" margin:0 20px; border:0;">';

            $_features = $feature['features'];
           {
                $html .= '<tr>';
		$html .= '<td style="padding: 3px 5px 3px 0;width:230px;float: left;background-color: #F4F4F6; font-family: Tahoma, Geneva, sans-serif; font-size:16px; text-align: right;"> '.$feature['groupname'].'</td>';
                $html .= '<td style="padding: 3px 5px 3px 0;width:230px;float: left;background-color: #F4F4F6; font-family: Tahoma, Geneva, sans-serif; font-size:16px; text-align: right;">'.$feature['name'].' </td>';
                $html .= '<td style="padding: 3px 0px 3px 10px;width: 400px;float: left;background-color:#ECECEC; font-family: Tahoma, Geneva, sans-serif; font-size:16px; font-weight: bold;text-align: left;">'.$feature['value'].'</td>';
                $html .= '</tr>';
            }
            $html .= '</table>';
        }

Wyświetlam  tabelę z cechami w kolumnach

Pierwsza kolumna to nazwa grupy cech, druga to nazwa cechy, trzecia kolumna to wartość cechy w następujący sposób:

table1.jpg

 

Natomiast chciałbym aby tabela wyświetlała się w ten sposób:

 

table2.jpg

 

Niestety na funkcji foreach poległem :)

Edited by And63 (see edit history)
Link to comment
Share on other sites

1 answer to this question

Recommended Posts

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...