-1

我使用 SQL 来存储我网站的页面,管理员可以编辑某些页面的页面内容,例如查询,联系我需要在页面内容中使用 PHP 表单

我想要的是 page.php?name=contact 从管理员可以编辑的页面名称“联系人”的 sql 中获取数据

例如数据是:

"Address of Company"
"Use the form below to contact us"

&在该数据下方,我想包含来自contact.php文件的内容,其中包括表单和所有验证和邮件发送功能。

我可以使用一些可以包含在 sql 数据中的短代码或函数,例如 wordpress [contact-form],因此在访问 page.php?name=contact 时,可以在 sql 数据下方包含来自 contact.php 文件的内容。

"Address of Company"
"Use the form below to contact us"
[contact-form]<--- Form from contact.php or enquiry.php included below content

使用此类文件的方法包括

谢谢

4

1 回答 1

-2

您必须执行以下步骤:

  1. 用于$name = $_GET['name'];检测当前页面。
  2. 使用 . 包含您的 PHP 文件include($name.'.php');
  3. 使用 MySQL 函数,例如mysql_query()加载与当前页面相关的内容并将其显示在页面中。(这应该在contact.php 源代码中)。

Wordpress 短代码并非随处可见......它们仅适用于 Wordpress 本身。

于 2012-04-20T13:40:23.927 回答