Jump to content

Add Upload Image To Add News


Daney11

Recommended Posts

Hey guys,

 

This is my add_news.php

http://nopaste.php-quake.net/17048

 

This is my upload.php

http://nopaste.php-quake.net/17049

 

Ive been trying for 2 hours to make it so my add_news.php uploads the image within the add_news.php. I just cant seem to do it.

 

Any ideas on how i can do this? Or links to websites that will show me?

The upload script works perfect by itself, but i want to know how to put it into add_news.php so that when it is all submitted the file uploads or gives out the error.

 

Thanks

 

**Anyone know why i couldnt post all the code in


tags aswell?

Link to comment
https://forums.phpfreaks.com/topic/91237-add-upload-image-to-add-news/
Share on other sites

have you got all the correct code in order here an example mate....

 

sorry i went throw your code and it to LONG you need to post the upload code not the whole script were here to help not work lol...........

 

upload correct form format....

<!-- The data encoding type, enctype, MUST be specified as below -->
<form enctype="multipart/form-data" action="__URL__" method="POST">
    <!-- MAX_FILE_SIZE must precede the file input field -->
    <input type="hidden" name="MAX_FILE_SIZE" value="30000" />
    <!-- Name of input element determines name in $_FILES array -->
    Send this file: <input name="userfile" type="file" />
    <input type="submit" value="Send File" />
</form>

 

correct upload code for the form

<?php
// In PHP versions earlier than 4.1.0, $HTTP_POST_FILES should be used instead
// of $_FILES.

$uploaddir = '/var/www/uploads/';
$uploadfile = $uploaddir . basename($_FILES['userfile']['name']);

echo '<pre>';
if (move_uploaded_file($_FILES['userfile']['tmp_name'], $uploadfile)) {
    echo "File is valid, and was successfully uploaded.\n";
} else {
    echo "Possible file upload attack!\n";
}

echo 'Here is some more debugging info:';
print_r($_FILES);

print "</pre>";

?>

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.