Bonsoir les Grafikarts.
comme l'indique le route,
par defaut ,la homepage s'affiche automatiquement,
quand je fais localhost/myapp/posts/45 (45 pour id)
chrome m'affiche ceci:
This localhost page can’t be foundNo webpage was found for the web address: http://localhost/myapp/posts/45
HTTP ERROR 404
$router = new Router($_GET['url']);
$router->get('/','App\Controllers\BlogController@index');
$router->get('/posts/:id','App\Controllers\BlogController@show');
$router->run();
Ce que je veux
je veux aussi voire afficher (je suis l'article 45)
Merci d'avance !