Jump to content

Linking problem


ptityop

Recommended Posts

Hi,

 

I have an issue with a banner I integrated in a page (http://hostelsuites.com) if you go to the page you'll see a banner on the left side , called "Combo Andes". The problem I am encountering is that this banner is linking to inside pages, and it works all fine for me but does not on some other computers, although they are using the same explorer or firefox versions....

 

I have no idea as to what could trigger this type of error, any help would be muche welcome.

 

Some details that might help :

The link is winthin the flash movie

The code that brings the banner up depending on the chosen language is

 

<div class="subtitulo"><?= ucfirst($lang["combomendoza"]) ?></div>

 

 

 

Thank you very much in advance

Link to comment
https://forums.phpfreaks.com/topic/211098-linking-problem/
Share on other sites

Hi, thanks for looking into this...

Apparently nothing happens, they just stay on the same page... I just don't get it and it's pretty difficult for me to spot the error as everything works fine for me and other people ... could be a cache issue ? Although I asked them to clear the cache....

Now probably the best solution would be to link the image directly within the php code, but I tried and it does not work, what I tried was

 

<div class="subtitulo"><a href="http://hostelsuites.com/combos:php?idioma=$idioma></a><?= ucfirst($lang["combomendoza"]) ?></div>

 

But it does not link... when rolling over the banner the browser shows where it should be linking fine but it is not clickeable....I must be missing something here ...

 

Thanks for your help

Link to comment
https://forums.phpfreaks.com/topic/211098-linking-problem/#findComment-1101005
Share on other sites

<div class="subtitulo"><a href="http://hostelsuites.com/combos:php?idioma=$idioma></a><?= ucfirst($lang["combomendoza"]) ?></div>

should be

<div class="subtitulo"><a href="http://hostelsuites.com/combos.php?idioma=<?php echo $idioma; ?>" target="_blank"><?php echo ucfirst($lang["combomendoza"]) ?></a></div>

Link to comment
https://forums.phpfreaks.com/topic/211098-linking-problem/#findComment-1101008
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.