我正在使用 Mysql 数据库和 PHP 做一个图片库 CMS。我是新手。
我有路径问题。
这是我的文件结构:this php doc - root/php/upload_portrait.php
. 我的图像存储在这里 - root/images/portrait_gallery/
所以我添加了../
保存图像的root/images/portrait_gallery/
效果很好。
但在数据库中,url 与 ../ 一起存储,并且该路径不正确,因为它们是从根索引文件中调用的。所以没有图像显示。
如何删除数据库中的../
on INSERT INTO
?
我试过替换和更新,但不知道怎么做。
这是我的代码
$portrait_url= $_FILES['upload'];
// 2. connect to database:
include 'connect.php';
// 4. handle moving image from temp location to images folder (using the function billedupload)
$billedurl = billedupload($portrait_url);
if($billedurl == false){
die("Something is wrong");
}
// 5. Insert imageupload in database:
$query = "INSERT INTO portrait (portrait_id, portrait_url) VALUES ('$portrait_id', '$billedurl')";
$result = mysqli_query($dblink, $query) or die( "Forespørgsel 2 kunne ikke udføres: " . mysqli_error($dblink) );
// 6. close connection
mysqli_close($dblink);
function billedupload($filearray){
if($filearray['type']=='image/jpeg' or $filearray['type']=='image/png'){
$tmp_navn = $filearray['tmp_name'];
$filnavn = $filearray['name'];
$url = '../images/portrait_gallery/' . time() . $filnavn;
move_uploaded_file($tmp_navn, $url);
return $url;
}
else{
return false;
}
}