0

我正在使用 codeigniter,我有一个可以添加新项目的表单。

在此表单中,我有一个字段,我可以在其中上传图像并插入到我的数据库中。

一切正常,可以插入我的数据库。

我的问题是,如何将我上传的图像添加到我的文件夹中?

小路: nameofproject/imagens/banner/

这是我的控制器:

function novo(){
    $this->load->helper(array('form', 'url')); 
    $this->load->library('form_validation');
    $this->form_validation->set_rules('banda', 'Banda', 'required');
    $this->form_validation->set_rules('data', 'Data', 'required');
    $this->form_validation->set_rules('hora_inicio', 'Hora In�cio', 'required|numeric');
    $this->form_validation->set_rules('hora_fim', 'Hora Fim', 'required|numeric');
    $this->form_validation->set_rules('morada', 'Morada', 'required'); 
    $this->form_validation->set_rules('preco', 'Pre�o', 'required|numeric'); 
    $this->form_validation->set_rules('aquisao_bilhetes', 'Aquisi��o de Bilhetes', 'required');
    $this->form_validation->set_rules('descricao', 'Observações', 'required');
    $this->form_validation->set_rules('image', 'Imagem', 'required|[image/jpeg|image/png]|file_path[../../imagens/banner/]');

    if ( ! $this->input->post())
    {
        $this->load->view("concertForm");
    }
    else
    {
        $dados=$this->input->post();
        $this->load->model("Dados_model");
        $results = $this->Dados_model->insere($dados);
    }
}
4

2 回答 2

0

您是否希望在数据库中存储对您的图像的引用(即:您有一个文件名列,并且您在其中存储:myupload.jpg)或者您是否希望将图像存储在数据库中?

如果它是第一个,那么您将希望使用$this->upload->data()帮助功能来获取有关您的文件的信息。

干杯

于 2013-06-21T20:03:16.153 回答
-1

也许这可以帮助你的问题,

1 初始化上传类

与 CodeIgniter 中的大多数其他类一样,Upload 类在您的控制器中使用$this->load->library函数进行初始化:

$this->load->library('upload');

2 设置偏好

与其他库类似,您将根据自己的喜好控制允许上传的内容。在上面构建的控制器中,您设置了以下首选项:

$config['upload_path'] = './uploads/'; //you can change this set preferences for folder upload

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

$config['max_size'] = '100';

$config['max_width'] = '1024';

$config['max_height'] = '768';

$this->load->library('upload', $config);

// Alternately you can set preferences by calling the initialize function. Useful if you auto-load the class:

$this->upload->initialize($config);

您可以查看此 用户手册

于 2013-06-21T18:19:13.233 回答