Hello,
when i retrieve my data in table-cells, how can i avoid line breaks,
for example in the table header?

[retrieve-code]
<!-- table- (column-) captions -->
      <table>
        <tr>
          <th><?php echo $paginator->sort(array('asc' =>'id v', 'desc'
=>'id ^'), 'id');  ?></th>
          <th>...</th>
          ...
        </tr>

<!-- table content -->
        <?php foreach ($hardware_units as $hardware_unit): ?>
        <tr>
          <td><?php echo $hardware_unit['HardwareUnit']['id']; ?></td>
          <td><?php echo $hardware_unit['HardwareUnit']['...']; ?></
td>
           ...
[/retrieve-code]

Thanks if someone can help! :)

Check out the new CakePHP Questions site http://cakeqs.org and help others with 
their CakePHP related questions.

You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected] For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en

Reply via email to