Skip to content

Files

Latest commit

47be541 · Oct 18, 2022

History

History
67 lines (63 loc) · 2.54 KB

COMPLETE_TUTORIAL.md

File metadata and controls

67 lines (63 loc) · 2.54 KB

Complete Tutorial

This guide will walk you through a complete implementaion of URLS. You will be making a very basic blog. Since this the goal of the tutorial is to demonstrate how URLS works, some features (such as a database) will not be included. Nevertheless, you should still get a good understanding of the framework.

Prerequisites

  • You should be familiar with the PHP.
  • Some knowledge of HTML, CSS, and JavaScript.
  • Some knowledge of Bootstrap.
  • Some knowledge of how the .htaccess file works.

Contents

  1. Project Setup
  2. Getting Started with URLS
  3. Templates
  4. Static Files
  5. More Pages
  6. Nesting Pages (part 1)
  7. Nesting Pages (part 2)
  8. Nesting Pages (part 3)
  9. Variable Paths
  10. HTTP Errors (part 1)
  11. HTTP Errors (part 2)
  12. HTTP Errors (part 3)
  13. Case Sensitivity
  14. Redirects
  15. Passing Variables
  16. Deploying
  17. Conclusion

Project Structure

└── (base directory)/
    ├── errors/
    │   ├── 404.php
    │   ├── 500.php
    │   └── contributors_500.php
    ├── includes/
    │   ├── footer.inc.php
    │   └── header.inc.php
    ├── static/
    │   └── style.css
    ├── templates/
    │   ├── about.php
    │   ├── Another-Friend.php
    │   ├── authors.php
    │   ├── contributors.php
    │   ├── errors.php
    │   ├── home.php
    │   ├── Me.php
    │   ├── My-Friend.php
    │   ├── posts.php
    │   └── vars.php
    ├── urls/
    │   ├── LICENSE
    │   ├── update.php
    │   └── Urls.php
    ├── .htaccess
    ├── author_settings.php
    └── settings.php

Project Images

Output Output
Output Output
Output Output

Next: Project Setup