我将创建一个包含 2 个贷款计算器的 php 文件。该文件应作为面板包含,如 [panel name="calculator-main"]。在主页上,文件应显示两个计算器界面。在其他页面上 - 只有一个计算器。
我正在考虑通过以下方式在页面上显示适当的计算器:
switch ($display) {
case "calculator 1":
First calculator content
break;
case "calculator 2":
Second calculator content
break;
default:
here come 2 combined calculators for the Home Page
}
如果有人能指导我如何在面板中调用 $display 参数,我将不胜感激。
谢谢!