Home > Article > Backend Development > How to set image as background in php
We can output the style code in php to change the html background image.
<!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>
However, it is not recommended to output the style file in the PHP code. It should be written in the HTML document, or the CSS style file should be written separately and introduced in the HTML.
1. Write css in html
<!-- 在head标签内书写css --> <style> body{background:url(背景图片地址);} </style>
2. Import css files
//main.css文件 body{background:url(背景图片地址);} //在html文件head标签中引入 <link rel="stylesheet" href="main.css">
For more PHP related knowledge, please visit PHP Chinese website!
The above is the detailed content of How to set image as background in php. For more information, please follow other related articles on the PHP Chinese website!