Jump to content

Link redirect problem...


SoireeExtreme

Recommended Posts

Hi, I'm trying to get a page to redirect a user to a link that is stored in the database when they click on it...

But the problem is that it doesn't exactly redirect to the link stored in the database. It tries to redirect to

mysite.com/whatever the stored link....  when it should just go to www.anothersite.com...

 

Could anyone help me out please?

 

Here is the code... Thanks in advance...

 

<?php
include "connect.php";
if(isset($_GET['linkid']))
{
  $linkid=$_GET['linkid'];
  $geturl="SELECT * from sl_links where linkid='$linkid'";
  $geturl2=mysql_query($geturl) or die("Could not get url");
  $geturl3=mysql_fetch_array($geturl2);

  print "<META HTTP-EQUIV = 'Refresh' Content = '1; URL =$geturl3[link]'> ";
}
?>

Link to comment
Share on other sites

if you haven't got the 'http://' part of the URL stored in the database it will do what you are describing

 

if all the links are witout the 'http' bit the simplest way is to prepend it to the url in your meta refresh,

but if you have a mixed URL formats in the database you will need some code to add it where needed ...

 

if (substr($geturl3[link],0,7) != 'http://' ){
$url = 'http://' . $url;
}

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.