![]() |
how to use template parser? - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: CodeIgniter 4 (https://forum.codeigniter.com/forumdisplay.php?fid=28) +--- Forum: CodeIgniter 4 Support (https://forum.codeigniter.com/forumdisplay.php?fid=30) +--- Thread: how to use template parser? (/showthread.php?tid=68866) |
how to use template parser? - jaynarayan - 09-06-2017 I am following the docs but get white blank page. following is my code PHP Code: <?php namespace App\Controllers; it gives error of invalidargumentexception. my template code is Code: <!doctype html> RE: how to use template parser? - InsiteFX - 09-06-2017 // this is the right way PHP Code: $v = \Config\Services::parser(); It could be that the parser is not completed yet... Hope that helps. RE: how to use template parser? - kilishan - 09-06-2017 The issue with the Parser has been resolved. You should be good now. RE: how to use template parser? - jaynarayan - 09-06-2017 (09-06-2017, 08:47 PM)kilishan Wrote: The issue with the Parser has been resolved. You should be good now. Thanks ![]() |