php不显示html怎么办
程序员文章站
2022-04-04 16:16:45
...
php不显示html是因为没有关闭标签导致的,其解决办法就是重新写入完整的html代码为“<style type="text/css"> .class{backgroundcolor:red;}</styel>”即可。
php中的html代码无法显示
问题代码如下:
<?php include('conn.php'); ?> <html> <head> <style type="text/css"> .class{ backgroundcolor:red; } </styel> </head> <body> <table class="class"> <tr> <td width=200px>t00</td><td>t01</td><td>t02</td> </tr> <tr> <td>t10</td><td>t11</td><td>t12</td> </tr> </table> </body> </html>
那我改了之后表的背景颜色怎么显示不出来啊
推荐:《PHP教程》
解决办法如下:
这个问题超简单的
<style type="text/css"> .class{ backgroundcolor:red; } </styel>
没有关闭标签,应该是</style>,写错了。
以上就是php不显示html怎么办的详细内容,更多请关注其它相关文章!
上一篇: windows系统查看端口的命令是什么
下一篇: php gbk如何转utf8