HTML用PHP变量
HTML里怎么用PHP变量啊我用了smarty了可还是传递不过阿莱$row的变量index.php<metahttp-equiv="Content-Type"conten...
HTML 里 怎么用 PHP变量啊
我用了 smarty 了 可还是 传递不过阿莱 $row的变量
index.php
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<?php
include_once('global.php');
mysql_query('SET NAMES UTF8');
$query=$db->query("SELECT * FROM p_config");
$row=$db->fetch_array($query);
$smarty->assign("$row",$row[name]);
$smarty->display("index.html");
?>
index.html
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>测试</title>
</head>
<body>
配置变量:{$row}
</body>
</html> 展开
我用了 smarty 了 可还是 传递不过阿莱 $row的变量
index.php
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<?php
include_once('global.php');
mysql_query('SET NAMES UTF8');
$query=$db->query("SELECT * FROM p_config");
$row=$db->fetch_array($query);
$smarty->assign("$row",$row[name]);
$smarty->display("index.html");
?>
index.html
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>测试</title>
</head>
<body>
配置变量:{$row}
</body>
</html> 展开
3个回答
展开全部
php 文件中 $smarty->assign("row",$row);
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
$smarty->assign("$row",$row[name]);
改成$smarty->assign("row",$row[name]);
改成$smarty->assign("row",$row[name]);
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询