gpt4 book ai didi

php - 如何为 PHP 文件设置固定背景图像?

转载 作者:可可西里 更新时间:2023-10-31 23:08:16 25 4
gpt4 key购买 nike

我有一个带有登录表单的 .html 文件,我想重新创建它并将其另存为 .php 文件。但是,我在设置背景图片和其他 CSS 相关内容时遇到了困难。

下面是我的 .php 代码,我确信它不会为回答我的问题提供指导,但我不知道从哪里开始。我查看了 W3schools 和许多其他网站。

帮助我解决问题的一个很好的开始是如何在 .PHP 文件中包含 .CSS 文件。也许给我一个快速的源代码示例。另外,设置固定背景的代码图像会很棒。

<?php

$url = 'C:\Users\George\Documents\HTML\bg.jpg';

?>

<html lang="en">
<head>

<title>This is a test</title>

<style type="text/css">
body
{
background-image:url('<?php echo $url ?>');
}
</style>

</head>

<body>

<p>This is a test.</p>

</body>
</html>

最佳答案

我找到了答案。

<?php
$profpic = "bg.jpg";
?>

<html>
<head>
<style type="text/css">

body {
background-image: url('<?php echo $profpic;?>');
}
</style>

<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Hey</title>
</head>
<body>
</body>
</html>

关于php - 如何为 PHP 文件设置固定背景图像?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11752451/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com