Jump to content

[SOLVED] file upload :/


aebstract

Recommended Posts

<?php
session_start();
header("Cache-control: private");
if(!isset($_SESSION["id"]))
{
header("Location: /login/");
}



if(isset($_POST["submit"])) {

if (move_uploaded_file ($_FILES['thefile']['tmp_name'], "upload/{$_FILES['thefile']['name']}")) {
echo "Has been uploaded";
} else {

echo "Not uploaded:<br />";

print "$_FILES[thefile][error]";


}



}





if ($var1 == post){
$content .= '
<form action="/videos/post/" method="post"
enctype="multipart/form-data">
<input type="hidden" name="MAX_FILE_SIZE" value="62914560" />
<input type="file" name="file" id="file" />
<br />
<input type="submit" name="submit" value="Post Video" />
</form>
';
}



?>

 

Okay, so far I am just trying to upload a small jpg and have it moved to my upload folder. With what code I have, this is echo'd out:

Not uploaded:

[error]

 

 

 

 

 

 

Link to comment
https://forums.phpfreaks.com/topic/148957-solved-file-upload/
Share on other sites

it wont even let me concatenate things to the end of the variable

?

 

Just changed it to match up with that,

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)) {
    echo "The file ".  basename( $_FILES['uploadedfile']['name']).
    " has been uploaded";
} else{
    echo "There was an error uploading the file, please try again!";
}


}

and

There was an error uploading the file, please try again! 

 

Link to comment
https://forums.phpfreaks.com/topic/148957-solved-file-upload/#findComment-782148
Share on other sites

try this


<?php
session_start();
header("Cache-control: private");
if(!isset($_SESSION["id"]))
{
header("Location: /login/");
}



if(isset($_POST["submit"])) {

if (move_uploaded_file ($_FILES['file']['tmp_name'], "upload/{$_FILES['file']['name']}")) {
echo "Has been uploaded";
} else {

echo "Not uploaded:<br />";

print "$_FILES[file][error]";


}



}





if ($var1 == post){
$content .= '
<form action="/videos/post/" method="post"
enctype="multipart/form-data">
<input type="hidden" name="MAX_FILE_SIZE" value="62914560" />
<input type="file" name="file" id="file" />
<br />
<input type="submit" name="submit" value="Post Video" />
</form>
';
}



?>

 

Link to comment
https://forums.phpfreaks.com/topic/148957-solved-file-upload/#findComment-782252
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.