将PHP文件取出的数据库数据显示在前端HTML文件某个div中的几种方法
1个回答
展开全部
第一种,使用smarty模板引擎
php文件:
$smarty->assign('data','hello world');
$smarty->display('index.html');
index.html文件:
<div>{$data}</div>
输出hello world
第二种,使用PHP变量直接输出
php文件:
$data = 'hello world';
require 'index.html';
index.html:文件:
<div><?php echo $data;?></div>
php文件:
$smarty->assign('data','hello world');
$smarty->display('index.html');
index.html文件:
<div>{$data}</div>
输出hello world
第二种,使用PHP变量直接输出
php文件:
$data = 'hello world';
require 'index.html';
index.html:文件:
<div><?php echo $data;?></div>
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询