1、__construct()构造函数前面是两小横,而_remap()方法重定向函数前面是一小横。
2013-4-52、form_open($action) 表单函数,$action不是完整的url的话,该函数会根据config中的"base_url"补全,即base_url/index.php/$action。当中存在一个这样的问题如果你的base_url是“CI/”这种简略形式,即CI/index.php/$action,这显然不是一个完整的url,系统会自动给你补全,url就变成了:www.xx.com/CI/index.php/xxxx/CI/index.php/$action,这样的四不像的url。解决问题的方法是不用form_open()函数,直接写<form action='' mehod='post' >。2013-4-6
3、<ul><?php foreach($todo_list as $item):?>//注意冒号
<li><?php echo $item;?></li>
<?php endforeach;?>
</ul>2013-4-6