ogle som kan skimte denne code - til en simpel billede upload side i en cms side - , og forhåbentlig finde den fejl som gør at der ikke vises noget når jeg preview'er den i Dreamweaver?
På forhånd tak:
hele coden<?php require_once('../Connections/cms.php');
mysql_select_db($database_cms, $cms);
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>upload billede</title>
</head>
<body>
<?php
if (isset($_FILES['filnavn'])) {
print"fil, der er blevet overført: {$_FILES['filnavn']['name']}<p>?n;
$query = "INSERT INTO billeder SET billednavn='".$_FILES['filnavn']['name']."'";
$Result1 = mysql_query($query, $cms) or die(mysql_error());
}
if (isset($_FILES['filnavn'])) {
$tempfile = $_FILES['filnavn']['tmp_name'];
$destination = "../billeder/{$_FILES['filnavn']['name']} ";
copy($tempfile, $destination);
}
?>
<form action="upload.php" method="post" enctype="multipart/form-data" name="upload" id="upload">
Fil, som skal overføres:
<label>
<input type="file" name="filnavn" id="filnavn" />
</label>
<p>
<label>
<input type="submit" name="button" id="button" value="Overfør" />
</label>
</p>
</form>
</body>
</html>
Fejlen skulle gerne opstå i denne del<?php
if (isset($_FILES['filnavn'])) {
print"fil, der er blevet overført: {$_FILES['filnavn']['name']}<p>?n;
$query = "INSERT INTO billeder SET billednavn='".$_FILES['filnavn']['name']."'";
$Result1 = mysql_query($query, $cms) or die(mysql_error());
}
if (isset($_FILES['filnavn'])) {
$tempfile = $_FILES['filnavn']['tmp_name'];
$destination = "../billeder/{$_FILES['filnavn']['name']} ";
copy($tempfile, $destination);
}
?>
Indlæg senest redigeret d. 23.06.2007 00:45 af Bruger #12051