PHP Classes

File: uploady/page.php

Recommend this page to a friend!
  Classes of Faris AL-Otabi   Uploady PHP Upload File to MySQL   uploady/page.php   Download  
File: uploady/page.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Uploady PHP Upload File to MySQL
Store file upload details in a MySQL database
Author: By
Last change: Update of uploady/page.php
Date: 29 days ago
Size: 466 bytes
 

Contents

Class file image Download
<?php
include_once 'session.php';
include_once
APP_PATH . 'logic/pageLogic.php';
?>

<?php include_once 'components/header.php'; ?>

<div class="container pb-5 pt-5">
  <div class="card">
    <div class="card-header">
      <?= $page_content->title; ?>
</div>
    <div class="card-body">
      <h3 class="card-title"><?= $page_content->title; ?></h3>
      <?= $page_content->content; ?>
</div>
  </div>
</div>

<?php include_once 'components/footer.php'; ?>