Skip to content

Latest commit

 

History

History
26 lines (16 loc) · 692 Bytes

index_readme.md

File metadata and controls

26 lines (16 loc) · 692 Bytes

Blog CRUD Operations (Continuation of Workshop 3 )

  • Functionalities to be developed
    • Options to Create, Update and Delete blogs.
    • Login / Signup page and its validations.

1. Develop Login functionality, Refer Login creation

2. Develop Logout functionlity, Refer Logout Creation

3. Develop Signup functionality, Refer Signup creation

4. Blog Operations, Refer Blog Operations

5. Add the session start and buffer start code

  • Add the below code in index.php file where its mentioned as Paste session code.
<?php
    session_start();
    ob_start();
?>