Ver Mensaje Individual
  #1 (permalink)  
Antiguo 10/03/2012, 14:46
charlys
 
Fecha de Ingreso: mayo-2009
Mensajes: 35
Antigüedad: 15 años, 8 meses
Puntos: 1
Renombrar archivo al subirlo

Hola foreros tengo el siguinte código para subir un archivo.
Mi pregunta es donde y que código tengo q poner para poner a ese archivo q subo el nombre q quiera

Código PHP:
Ver original
  1. <?php
  2.  class Upload extends CI_Controller {
  3.   function __construct()
  4.  {
  5.     parent::__construct();
  6.     $this->load->helper(array('form', 'url'));
  7.  }
  8.  function index()
  9.  {
  10.    $this->load->view('upload_form', array('error' => ' ' ));
  11.  }
  12.  function do_upload()
  13.  {
  14.    $config['upload_path'] = './uploads/';
  15.    $config['allowed_types'] = 'gif|jpg|png';
  16.    $config['max_size'] = '100';
  17.    $config['max_width'] = '1024';
  18.    $config['max_height'] = '768';
  19.    $this->load->library('upload', $config);
  20.    if ( ! $this->upload->do_upload())
  21.    {
  22.       $error = array('error' => $this->upload->display_errors());
  23.       $this->load->view('upload_form', $error);
  24.    }
  25.    else
  26.    {
  27.       $data = array('upload_data' => $this->upload->data());
  28.       $this->load->view('upload_success', $data);
  29.    }
  30.  }
  31. }
  32. ?>