php向html传递变量问题

在数据库中的变量是$goods.p_21,我要创建一个表格<table width="" border="0" cellspacing="0" cellpadding="0"> </table>,我想把这个表格的宽度是设为$goods.p_21,如何调用这个php变量?谢谢高手!

<table width=<?php echo $goods.p_21 ?>></table>//.php文件中
如果.html文件则不能使用PHP代码
也就无法传递PHP变量除了smarty中的模版。或者用PHP生成html页
温馨提示:内容为网友见解,仅供参考
第1个回答  2010-02-26
<table width=<?=$goods.p_21?>></table>/
第2个回答  2010-02-24
<table width="<? echo $goods.p_21; ?>" border="0" cellspacing="0" cellpadding="0">
第3个回答  2010-02-23
已经解决。
第4个回答  2019-11-24
<a
href="attachment.php?aid=<?=$aid?>&down=1">Download</a>
相似回答
大家正在搜