Skip to: site menu |main content

Welcome to my personal site. If You have any question or suggestion please feel free to contact me from contact page.

Advertisements

Contact me to place your Ads Here..

Powered by Drupal, an open source content management system

Syndicate

Syndicate content

enctype

File Save Upload for Drupal 6 users Accessing $_FILES is not prefered in drupal

In drupal 6 you can use file_save_upload() function for saving your uploaded files.Instead of mannually accessing $_FILES drupal standard is prefered.

<?php
file_save_upload
($source, $validators = array(), $dest = FALSE, $replace = FILE_EXISTS_RENAME);
?>

For making your custom form to work for file upload you need to set Enctype for your form in following manner:-

<?php
$form
['#attributes'] = array('enctype' => "multipart/form-data");
?>

Syndicate content

Back to top