以下是我正在制作的网站上的图库代码
<h3>Gallery</h3>
<?php
include"includes/connection.php";
$sql = "select * from kategorije";
$res = mysqli_query($con, $sql);
while($row = mysqli_fetch_assoc($res))
{
?>
<h4 class="text-center"><?php echo ucwords($row['naziv']); ?></h4>
<?php
$id = $row['sifra'];
$sql1 = "select * from rad where kategorija = $id";
$res1 = mysqli_query($con, $sql1);
$n = mysqli_num_rows($res1);
if($n>0)
{
while($row1 = mysqli_fetch_assoc($res1))
{
$pid = $row1['sifra'];
?>
<div class="col-md-2 col_1">
<a href="single.php?id=<?php echo $pid ?>"><img src="uploads/<?php echo $row1['datoteka']; ?>" class="img-responsive" alt=""/></a>
</div>
<?php
}
}else{
?>
<div class="col-md-2 col_1">
<h6>No Images</h6>
</div>
<?php
}
?>
<div class="clearfix"></div>
<?php
}
?>
我需要让图库中的所有照片在上传时都具有相同的高度和宽度,但我不知道如何。我试图插入此代码,但它不起作用:
echo"<img src='$dir_path$files[$i]'style='width:150px;height:200px;'>
我也尝试过使用CSS,但它也无法工作。
答案 0 :(得分:0)
由于您只想以其他尺寸显示它们,您可以通过您尝试的方式实现此目的,但使用正确的语法。我希望这行代码你需要调整大小的图像:
<a href="single.php?id=<?php echo $pid ?>"><img src="uploads/<?php echo `$row1['datoteka']; ?>" class="img-responsive" height="200" width="150" alt=""/></a>`
让我知道它对你有用。这不是你想要的那条线,请记住你只需遵循语法:
<img src="http://url.com/pic.png" width="150" height="200">
多数民众赞成。 :)