- Wednesday, 6:30:44 PM, 07-Jul-2021
- Published By: #Admin
इमेज अपलोड कैसे करें - In PHP language?
HTML और PHP script का इस्तेमाल करके files को server side कैसे upload कर सकते है | वह details से जानेगे!. file जैसे की image, zip files, videos, PDFs, gif हो सकती है!. file को server पे uploads करने से पहले वह file हमारी temporary directory में मतलब की हमारे computer में store होती है तो वह file को हमारे computer से server पर upload करने के लिए हम php script का इस्तेमाल से कर सकते है!.
PHP script का इस्तेमाल करके image को server पर move करके इसमें जो images होती है वह server side किसी perticuler image के लिए folder में store होगी और इस image name को हमें database में store करा सकते है!. अगर इस image को हमारी application या website में display हम इस database में store image के name से करा सकते है!. खास करके जो dynamic web application या website होती इसमें image server के perticuler directory folder में image store करती है और इस image name database में इसके बाद में webapplication और website में display होती है वह database के image के नाम के आधार पर वह perticuler directory folder मेसे display करा सकते है
HTML form for image uploading
|
ऊपर के HTML form में enctype attribute का इस्तेमाल किया गया है, क्योकि enctype atribute के इस्तेमाल बिना हम images, videos जैसे फाइल को हम server-side में send नहीं कर सकते इसके चलते इस attribute का इस्तेमाल करना जरुरी होता है. और इसके साथ ही image ko POST request के साथ ही send कर सकते है!। Images जैसी file को upload करने के लिए input control का इस्तेमाल किया जाता है!.
move_uploaded_file
PHP में move_uploaded_file function upload image को हमरे computer और laptop के temporary location से server-side new destination location पे move करता है!. और वह function internally चेक करता है की वह image post method के साथ upload की गई है की नहीं और अगर post request के साथ upload की गई होती है तो वह new destionation location में send कर देता है!.
syntax:
|
move_uploaded_file function में दो parameter सेट करने होते है!. first parameter temporyfilepath define करता है जब के दूसरा parameter server-side new location में send करने लिए new destinationfilepath define करता है!.
PHP $_FILES
PHP में $_FILES एक glabal varible है जो upload file के सभी information को collect करता है!. Image file की information जैसे की filename, filetype, filesize, tempfilename और file related error को रख सकता है!. ये सभी information को server-side get करने के लिए इस्तेमाल hone वाले specific files array जैसे की
$_FILES[‘filename’][‘name’]
$_FILES[‘filename’][‘name’] वह upload image file का file name return करता है!.
$_FILES[‘filename’][‘type’]
$_FILES[‘filename’][‘type’] वह upload image file का file type return करता है!.
$_FILES[‘filename’][‘size’]
$_FILES[‘filename’][‘size’] वह upload image file का file size return करता है!.
$_FILES[‘filename’][‘tmp_name’]
$_FILES[‘filename’][‘tmp_name’] वह image file हमारे computer और laptop में जिस location में store है वह tempary storage location return करता है!.
Comments