새로운 기능 laravel 4.2 웹 응용 프로그램을 개발 중입니다. 프로필 데이터를 데이터베이스에 저장하려고합니다.laravel 4.2 프로필 그림 저장/업로드 및 데이터베이스에서 검색
이 문제는이 양식의보기이다
Route::any('/company_profile','[email protected]');
경로 파일에서 내 컨트롤러 파일 코드
public function profilepicture(){
$data = Input::hasfile('file');
DB::table('company')->insert(array('data'=>$data));
return Redirect::to('/companyreg');
}
입니다
모든<form method="post" action="{{url('/company_profile')}}">
<input type="file" name="file" />
<input type="submit" name="submitfile" value="upload" />
</form>
갖고 계신 문제가 무엇인가요? – TheFallen