Advertisement
Guest User

Untitled

a guest
Feb 10th, 2012
210
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.47 KB | None | 0 0
  1. <?php foreach($dates as $date):?>
  2.     <tr>
  3.         <td><?php print $date->start_date;?></td>
  4.         <td><?php print $date->end_date;?></td>
  5.         <td><?php print $date->price;?></td>
  6.         <td><?php print $date->available;?></td>
  7.         <td><?php print $date->seats;?></td>
  8.         <td><img src="<?php print bloginfo('wpurl') . '/wp-content/plugins/witchroute';?>/images/icons/minus-button.png" alt="Delete" class="witchroute_delete_btn" date-id="<?php print $date->id; ?>" /></td>
  9.     </tr>
  10. <?php endforeach;?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement