sorry for the very noob question. I have a page : www.example.com/edit/3 with form inside.
<form class="" action="" method="post"> Usually my form action I will specify something like add, register, etc. In this case, I am not sure how do I specify it. Currently it is working when I save it if I leave it blank without specifying anything. But I am not sure is this the right way to do it.
Controller
public function edit_game(){} Routes
$routes->match(['get', 'post'], 'account/edit_game/(:num)', 'Addgame::edit_game/$1'); Can anyone advise?