PHP Classes

File: templates/home.php

Recommend this page to a friend!
  Classes of Pierre-Henry Soria   Link2Payment   templates/home.php   Download  
File: templates/home.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: Link2Payment
Application to generate links for people to pay
Author: By
Last change:
Date: 1 year ago
Size: 494 bytes
 

Contents

Class file image Download
<?php namespace PH7App; ?>

<div class="center">
    <h3>Welcome
        <?php if (!empty($fullname)): ?>
<span class="italic"><?= escape($fullname) ?></span>!
        <?php endif ?>
</h3>

    <p>&nbsp;</p>

    <p>
        <label for="payment_link" class="bold">Your Payment Link (to share with anyone!):</label><br>
        <input class="center" type="text" name="payment_link" value="<?= $payment_link ?>" id="payment_link" readonly onclick="this.select()">
    </p>
</div>