A exercise blog application based on the Symfony framework.
Implement a blog application using three routes:-
/bloglist all the blog posts in a table./blog/{id}return the page with the requested blog post id./tag/{id}return the blog posts using the respective tag.
- Clone the repository
- Create a database for the application
- create a db_config.php file with the mysql server details
- use the
web/front.phpscript
Fill the db_config_template.php file and rename to db_config.php
<?php
$host = '127.0.0.1';
$db_name = 'testblog_db';
$user = 'root';
$passwd = 'password';