画像のアップロードと一緒にタイトルと説明を含む画像をアップロードしようとしています。画像のアップロードとテキスト入力は別々に機能し、テキストと画像パスもDBに挿入されますが、両方を組み合わせる方法がわかりません。
http://codeigniter.com/user_guide/libraries/file_uploading.htmlにあるガイドを使用しました
function do_upload()
{
$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);
if ( ! $this->upload->do_upload())
{
$error = array('error' => $this->upload->display_errors());
$this->load->view('upload_form', $error);
}
else
{
$data = array('upload_data' => $this->upload->data());
$this->load->view('upload_success', $data);
}
}
誰かが画像アップロードフォームと一緒にいくつかのテキストフィールドをSQLデータベースに挿入する方法を教えてもらえますか?