Jump to content

sheff

New Members
  • Posts

    3
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

sheff's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Great job! Thanks works perfectly
  2. I have been working this site for a while now and could use your suggestions www.thewebsmystage.com Thanks
  3. Hello I'm running Vidiscript at www.thewebsmystage.com I have an outbound link module that I can't seem to get the links to open in a new window. I assume it is here: <?php function show_for_bar() { global $db; echo '<div>'; $lime = getSetting("traffic",$db); $sql = "SELECT * FROM `traffic` ORDER BY `In` DESC LIMIT 0, $lime"; $result = $db->query($sql); while($row = $db->fetch()) { echo '<div align="left"><a href="'.$sitepath.'out?url='.$row['Url'].'">'.$row['Sitename'].'</a></div><br>'; } echo "</div>"; } ?> which I assume works with this out.php file <?php function goout($redirect) { if (!$redirect) { echo "You have not designated a url to leave website to"; exit; } include 'includes/settings.inc'; mysql_connect($db_host, $db_user, $db_password) or die("Install Script First"); mysql_select_db($db_database) or die("Db Not Found"); $sql = "UPDATE traffic SET `Out` = `Out` + 1 WHERE Url='$redirect'"; mysql_query($sql) or die("Error Adding Stats"); } ?> Any suggestions to get the links to open in a new window would be very helpful. Thanks Sheff
×
×
  • 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.