ptityop Posted August 18, 2010 Share Posted August 18, 2010 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 Quote Link to comment https://forums.phpfreaks.com/topic/211098-linking-problem/ Share on other sites More sharing options...
Crono Posted August 18, 2010 Share Posted August 18, 2010 Clicking the banner works fine for me - it takes me where it should. Do you get any sort of error when you try to click it on a different computer? What happens when you click it, does it even show up at all? Quote Link to comment https://forums.phpfreaks.com/topic/211098-linking-problem/#findComment-1100994 Share on other sites More sharing options...
ptityop Posted August 18, 2010 Author Share Posted August 18, 2010 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 Quote Link to comment https://forums.phpfreaks.com/topic/211098-linking-problem/#findComment-1101005 Share on other sites More sharing options...
MadTechie Posted August 18, 2010 Share Posted August 18, 2010 <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> Quote Link to comment https://forums.phpfreaks.com/topic/211098-linking-problem/#findComment-1101008 Share on other sites More sharing options...
ptityop Posted August 18, 2010 Author Share Posted August 18, 2010 well thanks a lot for your help!! Quote Link to comment https://forums.phpfreaks.com/topic/211098-linking-problem/#findComment-1101019 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.