skip to Main Content

Php – Create Controller Inside a folder in CodeIgniter 4

how do i create a controller inside a folder programmatically using the Spark make command ? i wrote this code: $controllerName = service('request')->getpost('controllerName'); $controllerPath = service('request')->getpost('controllerPath'); $controllerFullPath = APPPATH.'Views/'.$controllerPath; if (!is_dir($viewFullPath)) { mkdir($viewFullPath, 0777, true); } $output = shell_exec('php spark…

VIEW QUESTION
Back To Top
Search