codeigniter register and login example
Example 1: codeigniter 4 login example
<?php namespace Config;
use CodeIgniter\Events\Events;
Events::on('post_controller_constructor', function() {
helper('render');
});
Example 2: codeigniter 4 login example
<html>
<head></head> <!-- move code from welcome_message.php's html <head> to here -->
<body>
<!-- move code from welcome_message.php's style to here,
or use separate file for css and apply to <head>
-->
<div class="wrap">
<?php echo $content; ?>
</div>
</body>
</html>