Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 13th, 2012  |  syntax: None  |  size: 0.34 KB  |  hits: 12  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. // User image
  2.             $form['image'] = new Zend_Form_Element_File('image');
  3.             $form['image'] ->setLabel('Your photo')
  4.                   ->setDestination(APPLICATION_PATH . '/../public/photos/')
  5.                   ->addValidator('Size', false, 10240000)
  6.                   ->addValidator('Extension', false, 'jpg,jpeg,png,gif');