有些人请帮我编写下面的代码!
所以目前我有一个地方,成员可以设置一个显示所有信息的个人资料。我现在想给用户一个上传图像的选项。并拥有个人画廊区。
我似乎找到的所有教程只显示如何进行图片上传。并不是特定于用户,那里的画廊区域将有其他人在其中工作。
我认为这需要一个数据库来使其特定于用户?或者解决$ _SESSION变量?我只是不知道该怎么做。
我完全迷失了,有人能指出我正确的方向吗?
下面是我当前的gallery.php代码,它几乎只生成缩略图并在uploads文件夹中显示所有给定的图像。
如何在会话或给定的用户个人资料中为用户显示图像?如何进行编辑?
<?php
if (isset($_GET['img'])){
//make thumbnail
if(file_exists($_GET['img'])){
ignore_user_abort(true);
set_time_limit(120);
ini_set('memory_limit', '512M');
$src_size = getimagesize($_GET['img']);
if ($src_size === false){
die('That does not look like an image.');
}
$thumb_width = 200;
$thumb_height = 150;
if ($src_size['mime'] === 'image/jpeg'){
$src = imagecreatefromjpeg($_GET['img']);
}else if ($src_size['mime'] === 'image/png'){
$src = imagecreatefrompng($_GET['img']);
}else if ($src_size['mime'] === 'image/gif'){
$src = imagecreatefromgif($_GET['img']);
}
$src_aspect = round (($src_size[0] / $src_size[1]), 1);
$thumb_aspect = round(($thumb_width / $thumb_height), 1);
if ($src_aspect < $thumb_aspect){
//higher than thumb
$new_size = array ($thumb_width, ($thumb_width / $src_size[0]) * $src_size[1]);
$src_pos = array (0, (($new_size[1] - $thumb_height) * ($src_size[1] / $new_size[1])) / 2);
}else if ($src_aspect > $thumb_aspect){
// wider than thumb
$new_size = array(($thumb_width / $src_size[1] ) * $src_size[0], $thumb_height);
$src_pos = array((($new_size[0] - $thumb_width) * ($src_size[0] / $new_size[0])) / 2, 0);
}else{
// same shape as thumb
$new_size = array($thumb_width, $thumb_height);
$src_pos = array(0, 0);
}
if ($new_size[0] < 1) $new_size[0] = 1;
if ($new_size[1] < 1) $new_size[1] = 1;
$thumb = imagecreatetruecolor($thumb_width, $thumb_height);
imagecopyresampled($thumb, $src, 0, 0, $src_pos[0], $src_pos[1], $new_size[0], $new_size[1], $src_size[0], $src_size[1]);
if ($src_size['mime'] === 'image/jpeg'){
imagejpeg($thumb, "thumbs/{$_GET[ 'img' ]}");
}else if ($src_size['mime'] === 'image/png'){
imagepng($thumb, "thumbs/{$_GET[ 'img' ]}");
}else if ($src_size['mime'] === 'image/gif'){
imagegif($thumb, "thumbs/{$_GET[ 'img' ]}");
}
header("Location: thumbs/{$_GET[ 'img' ]}");
}
die();
}
if (is_dir('./thumbs') === false){
mkdir('./thumbs', 0744);
}
$images = glob('*.{jpg, jpeg, png, gif}', GLOB_BRACE);
?>
<?php
foreach ($images as $image){
if (file_exists("./thumbs/{image}")){
echo "<a href=\"{$image}\"><img src=\"thumbs/{$image}\" alt=\"{$image}\" /></a>";
}else{
echo "<a href=\"{$image}\"><img src=\"?img={$image}\" alt=\"{$image}\" /></a>";
}
}
?>
答案 0 :(得分:0)
我有一个建议。
为“图库”创建一个表格
并插入有关图像名称以及user_id和此user_id的数据
将是已登录用户的ID,并且您可以从会话中获取
特定用户已登录。这是您管理图像的方式
已登录特定用户的图库。如果您需要更多,请告诉我
帮助..干杯
<?php
$uid = $_SESSION['uid'];
$query = mysql_query("SELECT * FROM images WHERE user_id=".$uid);
?>
此处,您可以将上述结果集用于特定用户的显示图像。