Files
friendshiptours.org/site/en/admin/creditcards.view.php
2015-11-12 19:58:50 -06:00

25 lines
683 B
PHP

<h2>Administrate FTI: Credit Cards</h2>
<p>
Below is the credit card information for the card you selected.
</p>
<p>
Return to
<a href='/admin/creditcards.php'>credit card list</a>.
</p>
<p>
<a href='/admin/creditcards.php?do=delete&id=<?php echo $this->data['card']['id'] ?>'>
Delete this card
</a>
</p>
<div class='admin_summary_box' id='creditcards_summary'>
<h3>Credit Card Information</h3>
<table class='data_table'>
<?php foreach($this->data['card'] as $key => $val): ?>
<tr>
<td class='data_key'><?php echo ucfirst(str_replace('_',' ',$key)) ?></td>
<td class='data_value'><?php echo $val ?></td>
</tr>
<?php endforeach; ?>
</table>
</div>