(我是一个完整的新手程序员)
我最近遇到了我的自定义 CMS 的问题。我想让它对 SEO 友好,所以我试图通过加载的页面来呼应标题,例如
www.blaa.com/index.php?page=about
//code here grabs the required page title from the mysql db $title = $row['title'];
<title><?php echo $title; ?></title>
我看不出这是否真的有效,因为当我查看源代码时它只显示以下代码:
<table>
<tr><td>Custom Module<br><br>
我的自定义模块 cus 任何 html 都在这里
</td></tr>
<tr><td>Menu Body <br><br>
<a href='home.html'> home</a><br><a href='about page.html'> about page</a><br><br><br> </td></tr>
<tr><td>body<br>
cant believe im so a<br></div>
</td></tr>
<tr><td>Footer<br>
links go here to various pages<br></td></tr>
</table>
有没有办法让所有的 HTML 代码显示在视图源中?