Welcome Guest, Not a member yet? Register   Sign In
Yet Another Smarty Thread
#30

[eluser]nhantam[/eluser]
I use CodeIgniter 1.7.2

blog file at system/application/conrollers/blog.php

Code:
function index()
    {
        $this->load->library('smarty_parser');        
        $this->load->helper('html');        
        $data['title'] = 'Your title';
        $data['todo_list'] = array('Clean House', 'Call Mom', 'Run Errands');        
        $this->smarty_parser->parse("ci:content_template.tpl", $data);
                
    }


content_template.tpl at system/application/views/content_template.tpl
Code:
{foreach from=$todo_list item=$items}
    <li>{$items}</li>
{/foreach}

I run localhost/codeigniter_172/blog/
show error following:

Code:
A PHP Error was encountered Severity: User Error

Message: Smarty error: [in ci:content_template.tpl line 22]: syntax error: 'foreach: 'item' must be a variable name (literal string) (Smarty_Compiler.class.php, line 1174)
Filename: smarty/Smarty.class.php
Line Number: 1095

Parse error: syntax error, unexpected T_ENDFOREACH in C:\xampp\htdocs\codeigniter_172\system\cache\%C^43F^43FD50D8%%ci:content_template.tpl.php on line 29

when I add literal at system/application/views/content_template.tpl

Code:
{literal}
{foreach from=$todo_list item=$items}
   <li>{$items}</li>
{/foreach}
{/literal}

I run localhost/codeigniter_172/blog/
show the following:

Code:
My Todo List
{foreach from=$todo_list item=$items}
{$items} {/foreach}
Copyright @ 2010 CodeIgniter 1.7.2

Could you solve problem, foreach array $todo_list with CI & Smarty ?


Messages In This Thread
Yet Another Smarty Thread - by El Forum - 09-03-2007, 03:32 PM
Yet Another Smarty Thread - by El Forum - 09-03-2007, 05:16 PM
Yet Another Smarty Thread - by El Forum - 09-12-2007, 11:02 PM
Yet Another Smarty Thread - by El Forum - 09-13-2007, 03:41 AM
Yet Another Smarty Thread - by El Forum - 02-01-2008, 04:41 PM
Yet Another Smarty Thread - by El Forum - 02-03-2008, 05:08 PM
Yet Another Smarty Thread - by El Forum - 02-06-2008, 03:16 PM
Yet Another Smarty Thread - by El Forum - 02-25-2008, 09:11 AM
Yet Another Smarty Thread - by El Forum - 03-02-2008, 09:17 PM
Yet Another Smarty Thread - by El Forum - 03-04-2008, 12:14 AM
Yet Another Smarty Thread - by El Forum - 03-05-2008, 12:24 PM
Yet Another Smarty Thread - by El Forum - 03-06-2008, 02:04 PM
Yet Another Smarty Thread - by El Forum - 03-07-2008, 03:05 PM
Yet Another Smarty Thread - by El Forum - 03-10-2008, 08:18 PM
Yet Another Smarty Thread - by El Forum - 06-12-2008, 06:29 AM
Yet Another Smarty Thread - by El Forum - 07-01-2008, 12:26 AM
Yet Another Smarty Thread - by El Forum - 08-21-2008, 03:48 AM
Yet Another Smarty Thread - by El Forum - 02-02-2009, 09:14 AM
Yet Another Smarty Thread - by El Forum - 02-02-2009, 09:18 AM
Yet Another Smarty Thread - by El Forum - 04-23-2009, 08:19 AM
Yet Another Smarty Thread - by El Forum - 04-23-2009, 08:24 AM
Yet Another Smarty Thread - by El Forum - 04-23-2009, 08:28 AM
Yet Another Smarty Thread - by El Forum - 04-23-2009, 08:44 AM
Yet Another Smarty Thread - by El Forum - 08-31-2009, 04:08 AM
Yet Another Smarty Thread - by El Forum - 08-31-2009, 06:05 AM
Yet Another Smarty Thread - by El Forum - 08-31-2009, 10:34 PM
Yet Another Smarty Thread - by El Forum - 08-31-2009, 10:48 PM
Yet Another Smarty Thread - by El Forum - 08-31-2009, 11:20 PM
Yet Another Smarty Thread - by El Forum - 09-27-2009, 09:33 AM
Yet Another Smarty Thread - by El Forum - 05-10-2010, 05:02 AM
Yet Another Smarty Thread - by El Forum - 05-10-2010, 08:38 AM
Yet Another Smarty Thread - by El Forum - 05-10-2010, 06:57 PM
Yet Another Smarty Thread - by El Forum - 05-17-2010, 11:05 PM
Yet Another Smarty Thread - by El Forum - 11-21-2010, 10:31 PM
Yet Another Smarty Thread - by El Forum - 03-25-2011, 12:58 AM
Yet Another Smarty Thread - by El Forum - 05-02-2011, 10:34 AM
Yet Another Smarty Thread - by El Forum - 07-03-2011, 07:26 AM
Yet Another Smarty Thread - by El Forum - 07-03-2011, 08:57 AM
Yet Another Smarty Thread - by El Forum - 02-17-2012, 11:12 AM
Yet Another Smarty Thread - by El Forum - 02-17-2012, 11:08 PM



Theme © iAndrew 2016 - Forum software by © MyBB