php不顯示html是因為沒有關閉標籤導致的,其解決方法就是重新寫入完整的html程式碼為「 .class{backgroundcolor:red; }</styel>」即可。 </p></blockquote> <p><strong><img src="https://img.php.cn/upload/article/202007/18/2020071810002183591.jpg" alt="php不顯示html怎麼辦" ></strong></p> <p><strong>php中的html程式碼無法顯示</strong></p> <p><strong>問題程式碼如下: </strong></p><div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:php;toolbar:false"><?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></pre><div class="contentsignin">登入後複製</div></div><p>那我改了之後表的背景顏色怎麼顯示不出來啊</p><p>#推薦:《<a href="https://www.php.cn/course/list/29.html" target="_blank">PHP教程</a>》</p><p><strong>解決方法如下:</strong></p><p>這個問題超簡單的</p><div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:php;toolbar:false"><style type="text/css"> .class{ backgroundcolor:red; } </styel></pre><div class="contentsignin">登入後複製</div></div><p>沒有關掉標籤,應該是,寫錯了。