不使用mysql更改网站内容

时间:2014-11-10 07:30:18

标签: php mysql content-management-system

我的客户希望更新网站内容,例如“营业时间”或其他业务详情。

我想知道是否有办法让他们更新内容,而不必为每个字段添加sql条目,然后提供表单供他们更新。

其中一些信息是在每种语言的php页面中进行硬编码的,因为有一个路由脚本会根据所选语言选择相应的页面来提取信息。

当前信息显示示例:

$openingHours = "Our business opens from 9am to 3pm and then evenings from 6pm to 10pm";
$introText = "Welcome to ABCD, where we offer the greatest food in town";

最好的方法是让我的客户端更新php文件但是在用户友好模式下,而不是手动编辑。有办法吗?

1 个答案:

答案 0 :(得分:1)

你可以使用config.php来制作它,你可以使用上面的方法:

<?php

$business = array();

$business['opening'] = 9;
$business['closing'] = 21;

?>

你可以把它包括在内,并在你想要的时候使用。 (或者你可以通过ini制作配置文件。但是php更容易)