我寫了下面的代碼,但它不工作。如何使用codeigniter上傳文件?
$config['upload_path'] = './uploads/';
$config['allowed_types'] = 'gif|jpg|png';
$config['max_size'] = '100';
$config['max_width'] = '1024';
$config['max_height'] = '768';
$this->load->library('upload', $config);
$this->upload->do_upload('product_image');
HTML表單:
<body>
<form method="post" action="localhost/codeigniter/index.php/product/insert" enctype="multipart/form-data">
<label>Product Name :</label> <input type="text" name="product_name"/><br/>
<label>Product Image :</label> <input type="file" name="product_image"/><br/>
<input type="submit" name="submit" value="Submit"/>
<?php echo validation_errors(); ?>
</form>
</body>
什麼錯誤你得到?向我們展示您的html表單 – GBD
請提供更多信息,whay不工作?你得到什麼錯誤? – RezaSh
我沒有收到任何錯誤。文件沒有上傳。 –