Skip to content

Instantly share code, notes, and snippets.

@justinkelly
Created July 11, 2011 06:19
Show Gist options
  • Save justinkelly/1075375 to your computer and use it in GitHub Desktop.
Save justinkelly/1075375 to your computer and use it in GitHub Desktop.
<?php
//db update query from form with image upload fields
$data = array(
'company_name' => $form->getValue('company_name'),
'company_image' => $form->getElement('company_image')->getValue(),
'company_logo' => $form->getElement('company_logo')->getValue(),
'website' => $form->getValue('website')
);
$this->update($data, 'id = '. (int)$id);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment