开发范例之显示Hello,world
显示“Hello,world”程序编写例子
程序代码编写
存放目录格式
插件程序存放目录用: /e/extend/helloworld/
插件程序模板存放目录用: /e/extend/helloworld/template/
所需程序文件
/e/extend/helloworld/index.php 主程序文件
/e/extend/helloworld/template/index.temp.php 主程序模板文件
程序目录

模板目录

主程序文件内容(/e/extend/helloworld/index.php):
<?php
require('../../class/connect.php'); //引入数据库配置文件和公共函数文件
require('../../class/db_sql.php'); //引入数据库操作文件
$link=db_connect(); //连接MYSQL
$empire=new mysqlquery(); //声明数据库操作类
$editor=1; //声明目录层次
$context='Hello, World!'; //定义显示内容
require('template/index.temp.php'); //导入模板文件
db_close(); //关闭MYSQL链接
$empire=null; //注消操作类变量
?>
主程序模板文件内容(/e/extend/helloworld/template/index.temp.php):
<?php
if(!defined('InEmpireCMS'))
{
exit();
}
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>显示<?=$context?>例子</title>
</head>
<body>
<br>
<br>
<br>
<table width="500" border="0" align="center" cellpadding="3" cellspacing="1" bgcolor="#CCCCCC">
<tr>
<td height="25"><strong>显示内容为如下:</strong></td>
</tr>
<tr>
<td height="60" bgcolor="#FFFFFF"> <div align="center"><strong><font color="#FF0000" size="5"><?=$context?></font></strong></div></td>
</tr>
</table>
</body>
</html>
说明:模板可用Dreamweaver可视化制作。其中蓝色部分代码为不允许直接访问模板文件的作用。
访问Hello World插件文件主程序:/e/extend/helloworld/index.php

- 文章链接:https://www.daixiao360.cn/help/182.html
- 文章标题:开发范例之显示Hello,world
- 文章版权:帝国CMS模板网 (www.daixiao360.cn) 所发布的内容,部分为原创文章,转载请注明来源,如有侵权请联系我们!
-
2.8千+ 23 300
-
2.8千+ 28 300
-
3千+ 21 500
-
4.3千+ 21 300
-
3.3千+ 15 300
-
7.2千+ 15 500
-
6.6千+ 31 200
-
5.8千+ 32 200









