Hi everybody,
I'm using the ARI Cloud Carousel.
I need to get the id of the first image from the url. I dont want to use the id parameter in the module admin because I need to use one module Carousel on different pages (I dont want to copy the module as many times as pages)
I made my links in the ini like :
www.mywebsite.com/the_right_page_for_this_image?idfirstimage=7
and now I want to get my id to have the image 7 as first image on the page.
I think I have to hack like
Code: |
if (isset($_GET["idfirstimage"])) $idfirstimage=$_GET["idfirstimage"];
|
Could you help me ?