Guest User

Untitled

a guest
Apr 26th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.90 KB | None | 0 0
  1. <?php echo $this->Form->create('Image',array('type' => 'file','url'=>array('controller'=>'images','action'=>'add'),'id'=>'imageForm')); ?>
  2.  
  3. <?php echo $this->Form->file('image'); ?>
  4. <?php echo $this->Form->input('description',array('type'=>'text','id'=>'desc')); ?>
  5. <?php echo $this->Form->input('date', array('label' => 'Fin')); ?>
  6. <?php echo $this->Form->end('Ajouter') ?>
  7.  
  8. -----------
  9. add action
  10. -----------
  11. if ($this->request->is('post')) {
  12. if(!empty($this->request->data["Image"]["image"]["tmp_name"]))
  13. {
  14. $this->Image->create();
  15. $this->Image->save($this->request->data);
  16. debug($this->Image);
  17. $this->Session->write("id_image",$this->Image->id);
  18.  
  19. // $this->redirect($this->Session->read('last_page'));
  20. }
Add Comment
Please, Sign In to add comment