Welcome Guest, Not a member yet? Register   Sign In
Vue like components in PHP/Codeigniter 4
#2

(This post was last modified: 10-18-2020, 10:34 AM by includebeer.)

You can already do that: https://codeigniter4.github.io/userguide...o-the-view

But you need to use PHP syntax, not JavasScript like you did in your example:

PHP Code:
<?php echo view('component/img_text', ['flip' => true]); ?>
<?php 
echo view('component/text', ['bg' => 'teal''columns' => 4]); ?>

Then in img_text.php you can use the variable $flip and in text.php you can use $bg and $columns.
CodeIgniter 4 tutorials (EN/FR) - https://includebeer.com
/*** NO support in private message - Use the forum! ***/
Reply


Messages In This Thread
RE: Vue like components in PHP/Codeigniter 4 - by includebeer - 10-18-2020, 10:33 AM



Theme © iAndrew 2016 - Forum software by © MyBB