PHP Classes

File: examples/library/view/authors.php

Recommend this page to a friend!
  Classes of Victor Bolshov   Tiny PHP ORM Framework   examples/library/view/authors.php   Download  
File: examples/library/view/authors.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: Tiny PHP ORM Framework
Map objects to databases using composed queries
Author: By
Last change: Improved library example: added author_save.php, author_edit.php; got rid of author_add.php;
Added credits section to README
Date: 8 years ago
Size: 911 bytes
 

Contents

Class file image Download
<h3>Add new author</h3>
<form method="post" action="author_save.php" class="form" id="add-form">
    <label>Name:</label>
    <div class="input-group">
        <input type="text" name="name" class="form-control">
        <a class="input-group-addon btn"
           onclick="document.getElementById('add-form').submit(); return false;">Add</a>
    </div>
</form>

<h3>Authors</h3>
<table class="table table-bordered table-striped">
    <thead>
    <tr>
        <th>Name</th>
        <th>Actions</th>
    </tr>
    </thead>
    <tbody>
    <?php foreach ($authors as $author) : ?>
<tr>
            <td><?=htmlspecialchars($author["name"], ENT_QUOTES)?></td>
            <td>
                <a href="author_edit.php?id=<?=$author["id"]?>">Edit</a> |
                <a href="author_delete.php?id=<?=$author["id"]?>">Delete</a>
            </td>
        </tr>
    <?php endforeach; ?>
</tbody>
</table>