Question

This is the postLink method of FormHelper in Cake 2.3.

http://book.cakephp.org/2.0/en/core-libraries/helpers/form.html#FormHelper::postLink

I was wondering if I can use it to upload a single file instead of using it for deletion.

Was it helpful?

Solution

No

That function creates a form that looks like a link. Uploading a file can be achieved with appropriate usage of the form helper, e.g.:

echo $this->Form->create('User', array('type' => 'file'));
echo $this->Form->file('avatar');
echo $this->Form->submit();
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top