Welcome Guest, Not a member yet? Register   Sign In
how to set validation rules for my upload form ..????
#1

[eluser]meer[/eluser]
controller

<?php

class Upload extends CI_Controller {

function __construct()
{
parent::__construct();
$this->load->helper(array('form', 'url'));
}
function index()
{
$this->load->view('upload_form', array('error' => ' ' ));
}




function do_upload()
{
$config['upload_path'] = './images/';
$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
{
$upload_data= $this->upload->data();
$filename = $upload_data['file_name'];

$hover=$this->input->post('hover');
$description=$this->input->post('description');
$readmore=$this->input->post('readmore');
$this->load->model('form_model');
$this->form_model->add_image($filename,$hover,$description,$readmore);
$data = array('upload_data' => $this->upload->data());
$this->load->view('upload_success', $data);

}
}
}
?>


how to set validation rules of text fields along with upload image field,,?????????
some one help me plzzzzzzz
#2

[eluser]meer[/eluser]
any one plzzz..........




Theme © iAndrew 2016 - Forum software by © MyBB