is to convert the content in the source code of a website's home page into PHP format (recommended learning: PHP video tutorial)
<div class="mid"><br/><ul><br/><li class="item one"><br/><h3 class="title "><a href="http://cy.whsw.cn/?cat=42">头脑风暴</a></h3><br/><p class="sub-title">头脑风暴法力图通过一定的讨论程序</p><br/></li><br/><div class="clear"></div><br/></ul><br/></div><br/>
Change the content here to PHP format
Because html does not have php code, so just change the source code file name suffix from html to php. If you want to write php code in it. Just add the following. Anywhere on the web page:
已经将你需要的代码转化为php文件,你复制此代码到你新建立文件:比如test.php。就是你想要的效果了。<br/> <br/><?php<br/>$test=<<<ttt<br/><div class="mid"><br/> <ul><br/> <li class="item one"><br/> <h3 class="title "><a href="http://cy.whsw.cn/?cat=42">头脑风暴</a></h3><br/> <p class="sub-title">头脑风暴法力图通过一定的讨论程序</p><br/> </li><br/> <div class="clear"></div><br/> </ul><br/> </div><br/>ttt;<br/>echo $test;<br/>?><br/>
The above is the detailed content of How to convert html to php. For more information, please follow other related articles on the PHP Chinese website!