PHP从数据库读取数据出来如何在前端实现图文混排
展开全部
第一种,使用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>
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询