如何使表单接受codeigniter中的图标/图像?

时间:2017-09-06 07:49:27

标签: php codeigniter

表单字段不接受

图标。 我的代码是:

<input type="file" name="promotion_image" value="<?php echo $mChapterEng; ?>" id="promotion_image" class="form-control">     <?php if (form_error('promotion_image')) { ?><span style="color: #E68F8F;"><?php echo form_error('promotion_image'); ?></span> <?php } ?>    

请帮帮我

1 个答案:

答案 0 :(得分:0)

config/mimes.php

'ico' => array('image/ico', 'image/x-icon'),//check if already exists both then dont add

并在您的控制器中添加此

$config['allowed_types'] = 'ico|jpg|png';