Is it possible in Symfony to upload a file from a method and other form fields from different methods?
Suppose I have the following fields
a. Name
b. Age
c. Description
d. Image
in uploadDetails()
public function uploadDetails(){
//upload name, age, description and Image name.
}
in uploadImage()
public function uploadImage(){
//upload image file.
}
Comments
Post a Comment