PHP Classes

File: app/Views/templates/partials/footer.php

Recommend this page to a friend!
  Classes of Rodrigo Faustino   PHP MVC App   app/Views/templates/partials/footer.php   Download  
File: app/Views/templates/partials/footer.php
Role: Auxiliary script
Content type: text/plain
Description: Configuration script
Class: PHP MVC App
MVC based application for the Web and as an API
Author: By
Last change:
Date: 12 days ago
Size: 399 bytes
 

Contents

Class file image Download
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Footer</title>
    <link rel="stylesheet" href="/assets/css/style.css">
</head>
<body>
    <footer>
        <div>
            <p>&copy; <?php echo date("Y"); ?> My Application. All rights reserved.</p>
        </div>
    </footer>
</body>
</html>