PHP Classes

File: app/views/blog/show.php

Recommend this page to a friend!
  Classes of Rodrigo Faustino   Personal   app/views/blog/show.php   Download  
File: app/views/blog/show.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Personal
Generate a portfolio site
Author: By
Last change:
Date: 4 days ago
Size: 376 bytes
 

Contents

Class file image Download
<?php $this->layout('template'); ?>

<section class="w3-container w3-padding-64">
    <div class="w3-card-4 w3-margin">
        <div class="w3-container">
            <h1><?= htmlspecialchars($post->title) ?></h1>
            <p><?= htmlspecialchars($post->slug) ?></p>
            <textarea id="content"><?= $post->content ?></textarea>
        </div>
    </div>
</section>