Fejl i kode ?
HejHar et problem med en side, får følgende fejlkode:
Warning: copy(): Unable to access in /home/virtual/langhoigaard.dk/public_html/admin/admin_diverse.php on line 165
Og her kommer lige det PHP kode. copy $tempfile,$destination); Er linje 165.
<?php
if (isset ($_FILES['filnavn'])) {
print "Fil, der er blevet overført: {$_FILES['filnavn']['name']}<p>\n";
$query = "INSERT INTO diversegalleri SET billednavn='".$_FILES['filnavn']['name']."'";
$Result1 = mysql_query($query, $langhoigaard) or die(mysql_error());
}
{
$tempfile = $_FILES['filnavn']['tmp_name'];
$destination = "../billeder_diverse/{$_FILES['filnavn']['name']}";
copy($tempfile,$destination);
}
?>
Takker på forhånd.