ok so I have the script loaded onto my server as a .php file. That part works really well. It even seems to upload the imagebut when I check the desired directory I get nothing. is it possible that I'm not entering the file location properly?
eg.
PHP Code:
$newfile = "/home/pathto/public_html/yourfoldername/".$userfile_name;
yourfoldername =
http://www.bobsnetplace.net/images
or should I just be putting images
eg.
yourfoldername = images
if I upload the images from my computer harddrive do I need to modify the script/
maybe add a line that looks like this
<input type="text" value="name" name="file_name" maxlength="100" size="100"><br>
to the form and then maybe a line like this
PHP Code:
$userfile_file_name = $HTTP_POST_FILES['userfile']['file_name'];
could these things maybe solve my problems?
Please help I'm still struggling with this