このファイルに背景画像を設定しようとしましたが、indx.phpとしてあります。 これを試しましたが動作しません。背景がまだ空です。しかし、私はindex.htmlの背景を正常に設定する拡張を変更した場合。私はコードで何が間違っているのか分からない。そしてなぜそれがこのようにふるまうのか。背景画像を設定できません
<html>
<head>
<style>
body
{
background-image: url("back.jpg");
background-position:0px 0px;
background-size: cover;
background-repeat: repeat;
}
</style>
</head>
<body>
<style>
table{
border-spacing:15px;
}
td{
padding:30px;
}
body
{
background-image: url(back.jpg);
background-size: cover;
background-repeat: repeat;
}
</style>
</body>
<?php
require "connect.php";
$sql="select * from nbook";
$row = $conn->query($sql);
$n=0;
echo"<form method='post'><table border='0' align='center'><tr>";
while($arr = $row->fetch_assoc())
{
$i=$arr['BookId'];
if($n%3==0)
{
echo "<tr>";
}
echo "
<td height='280' width='240' align='center'><img src='data:image/jpg;base64,".base64_encode($arr['BookImage'])."'height='250' width='200'><br/>
<b>BOOKNAME:</b>".$arr['BOOKNAME']."
<br><b>Author:</b>".$arr['Author']."
<br><b>Publication:</b> ".$arr['PublicatonHouse']."
<br><b>Discount:</b>".$arr['Discount']."%
<br><br><img src='images/MetalPlakDa5new.gif' width='70' height='20'/></a>
<img src='images/view7.jpg' width='70' height='20'/></a>
</td>";
$n++;
}
echo "</tr></table>
</form>";
?>
</body>
</html>
はたぶん、その部分に何か問題が追加されなければならないスライドなど
消えた: "'必要connect.php "; ' このファイルは存在しますか? –
文書に '