Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. <?php foreach(property_list('`rooms` LIKE "1(%"') as $item):?>
  2. <tr>
  3. <td><?=$item['rooms']?></td>
  4. <td><?=$item['area']?></td>
  5. // еще десяток ячеек с данными из БД
  6. </tr>
  7. <?php endforeach;?>
  8.  
  9. <?php
  10. $i = 0;
  11. foreach(property_list('`rooms` LIKE "1(%"') as $item):?>
  12.  
  13. <tr>
  14. <td><?=$item['rooms']?></td>
  15. <td><?=$item['area']?></td>
  16. <td>...</td>
  17. </tr>
  18. $i+=1;
  19. if (++i > 500) break;
  20. <?php endforeach;?>
  21. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement