SIR main ek Vb.net developer hun
mujy php main ek file up upload karni hy lakin mujy selector box ni chahiye...
for example
main textbox main likhun C:\test.mp4 or upload pr click kareny py file upload hu jy
mara php code ye hy
Code:
	<div class="video-box">
		<h1>Upload Video to YouTube using PHP by CodexWorld</h1>
		<form method="post" enctype="multipart/form-data" action="upload.php">
			<?php echo (!empty($errorMsg))?'<p class="err-msg">'.$errorMsg.'</p>':''; ?>
			<label for="title">Title:</label><input  id="title" type="text" name="title" value="" />
			<label for="description">Description:</label> <textarea id="description" name="description" cols="20" rows="2" ></textarea>
			<label for="tags">Tags:</label> <input type="text" id="tags" name="tags" value="" />
			<label for="file">Choose Video File:</label> <input type="file" name="file" >
			<input name="videoSubmit" id="Upload" type="submit" value="Upload">
		</form>
	</div>