<form enctype="multipart/form-data" action="up.php" method="POST">
<input type="hidden" name="MAX_FILE_SIZE" value="100000"/>
Chooseafiletoupload:<input name="uploadedfile" type="file"/><br/>
<input type="submit" value="UploadFile" name="Submit"/>
</form>
<?php
if (isset($_POST['Submit'])){
$target_path="upload/";
$target_path=$target_path.basename($_FILES['uploadedfile']['name']);
if(move_uploaded_file($_FILES['uploadedfile']['tmp_name'],$target_path)){
$myFile = "upload/".$_FILES['uploadedfile']['name'];
}
else{echo "could not upload";}
<input type="hidden" name="MAX_FILE_SIZE" value="100000"/>
Chooseafiletoupload:<input name="uploadedfile" type="file"/><br/>
<input type="submit" value="UploadFile" name="Submit"/>
</form>
<?php
if (isset($_POST['Submit'])){
$target_path="upload/";
$target_path=$target_path.basename($_FILES['uploadedfile']['name']);
if(move_uploaded_file($_FILES['uploadedfile']['tmp_name'],$target_path)){
$myFile = "upload/".$_FILES['uploadedfile']['name'];
}
else{echo "could not upload";}
[/cc]
Categories |
||||
No Comments to “Simple PHP CSV upload”
Please Wait
Leave a Reply