HTML 배경 이미지를 변경하기 위해 PHP에서 스타일 코드를 출력할 수 있습니다.
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Document</title> </head> <body> <!-- 通过设置style实现改变背景 --> <body <?php echo 'style="background:url(图片.jpg);"'; ?> > <form action="DataBase.php" method="post"> 用户名:<input type="text" name="username" maxlength="40"/><br/> 密码:<input type="password" name="pwd" maxlength="40"/><br/> <input type="submit" value="提交"/> </form> </body> </body> </html>
단, php 코드로 스타일 파일을 출력하는 것은 권장하지 않습니다. html 문서로 작성하거나, css 스타일 파일로 작성해야 합니다. 별도로 HTML에 소개되었습니다.
1. HTML로 CSS 작성
<!-- 在head标签内书写css --> <style> body{background:url(背景图片地址);} </style>
2. CSS 파일 소개
//main.css文件 body{background:url(背景图片地址);} //在html文件head标签中引入 <link rel="stylesheet" href="main.css">
PHP 관련 지식을 더 보려면 # 🎜🎜#PHP中文网!
위 내용은 PHP에서 이미지를 배경으로 설정하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!