|
Posted by gerg on 09/28/97 11:43
For a simple, no real error checking, bare bones script, would this
script work for uploading a file? I seem to be having some problems.
Permissions are set to allow for upload, etc...
<?
if ($_FILES['file2upload']['name'] != ""){
copy( $_FILES['file2upload']['tmp_name'],"___URL____TO___UPLOAD____TO__"
.. $_FILES['file2upload']['name'] )
or die ("Could not copy file");
}
else
{
die("No File Specified");
}
?>
'file2upload' is the name of the html form. Thanks.
Navigation:
[Reply to this message]
|