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
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>";

?>

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.