0

我正在使用 TomatoCart 建立一个在线商店。该平台使用模板系统。

我使用了一个具有 HTML、CSS 和 JavaScript 的滑块。安装非常简单,并且在网站上显示得很好。

问题是它现在显示在所有页面上,并且只在索引页面上是必需的。我环顾四周,似乎有一种方法可以通过 php 做到这一点。

在这个项目之后,我将学习 php 作为我的使命,但与此同时,任何人都可以向我解释如何使滑块仅在一页上可见,而不是全部。它保存在 div 中,文件名为 index.php

谢谢

4

1 回答 1

0
<?php
if (strpos($_SERVER['SCRIPT_NAME'], 'index.php') !== false) 
{
// add the slider  code here
}
?>

Here we just check if the page is index.php or not.  If it is it will execute the code within the if condition.


Regards
Abnab
于 2013-02-07T00:50:30.757 回答