我有一个PHP代码如下:
1 个文件包含以下内容:
<?php
$max=count($_SESSION['cart']);
?>
<div class="cartSummary">
<?php echo $lang['CARTSTATUS']; ?>
</div>
另一个文件包含以下内容:
$lang['CARTSTATUS'] = "Tiene <a href='../cart/shoppingCart.php'>".$max." productos </a>en su cesta de compra";
问题是结果只显示纯文本,$max
没有打印变量。
您是否发现将 $max 加载到我正在使用的数组 $lang 中有任何问题?
谢谢!