仅包含特定页面上的文件 php
我对 PHP 完全陌生,并且遇到了这个问题。在每个页面上,我都包含页脚文件,然后页脚包含一个小的输入表单文件。我希望页脚将其包含在除了 contactus.php 之外的每个页面上。
可行吗?
感谢您。
I am completely new to PHP and have this problem. On every page I am including footer file, and then footer includes a small input form file. I would like the footer to included it on each page besides contactus.php.
Is it doable?
Thanks you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用这样的 if :
Use an if like this:
是的,你可以这样做。只需用 if 检查包围您的代码块即可检查当前页面。像这样的东西。
Yes, you can do this. Just surround your block of code with an if check, that checks for the current page. Something like this.
在页脚文件中,您可以使用以下代码:
如果您的代码类似于
In your footer file you can use this code:
This is if your code is something like