I am trying to implement a post function and want to select a message and image from a php view. The functionality of my post works well. But when I upload the image, I get the error message You did not select a file to upload . This is my controller function.
function post_func() { session_start(); echo $post_message=$_POST['post']; echo $share_with=$_POST['share_with']; echo $image=$_POST['image']; if($image==null){ echo "<br/>no image<br/>"; } else{ //////////////////////////////////////////////////////////////////////////////////////// $config['upload_path'] = './application/css'; $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->initialize($config); if ( ! $this->upload->do_upload()) { $error = array('error' => $this->upload->display_errors()); echo "<br/>"; echo $this->upload->display_errors(); echo "<br/> image error<br/>"; } else { echo "<br/> reached <br/>"; session_start(); $this->membership_model->insert_images($this->upload->data(),$email); $data = array('upload_data' => $this->upload->data()); echo "<br/ problem<br/>"; } //////////////////////////////////////////////////////////////////////////////////////// } $public; if($share_with=="public"){ echo "1"; $public=true; }else{ echo "0"; $public=false; }echo "-----------------------------<br/>"; echo $user=$this->session->userdata('user_identification'); $data = array ( 'userid'=> $user, 'public' => $public, 'message' => $post_message, 'picname' => "None" ); $this->load->model('membership_model'); $this->membership_model->add_message($data); echo "</br>"; echo $user=$this->session->userdata('user_identification'); }
This is my opinion.
<?php echo form_open('search/post_func');?> <div id="your_post"> <div id="post_image"> <img id ="post_img" src="<?php echo $this->config->item('base_url'); ?><?php echo '/application/css/'. $img ?>"/> </div> <textarea name="post" rows="5" cols="30" placeholder="Share an update..." id="post_text" rows="2" value=""></textarea> //other view items <?php echo form_close(); ?>
Please help me
source share