我在 view 里
<?php echo validation_errors(); ?>
<?php echo form_open('blog/add_one'); ?>
<label for="title">标题</label>
<input type="input" name="title" /><br />
<label for="text">内容</label>
<textarea name="content"></textarea><br />
<input type="submit" name="submit" value="创建一个新闻">
红色字体是form简写的
我在 controllers 里面已经引入了
$this->load->helper(array('form', 'url'));
$this->load->library('form_validation');
为什么提交的时候地址不正确 http://localhost/index/CodeIgniter_2.1.0/index.php/blog/127.0.0.1/index.php/blog/add_one
正确的应该是http://localhost/index/CodeIgniter_2.1.0/index.php/blog/add_one
大家给我解释下 我是新手
|