עדיין לא עובד, ד"א זה כול הדף אולי יש פה בעיה:
PHP קוד:
<?php
$connection = mysql_connect("xxx", "xxx", "xxx")
or die("couldnt connect to sql server");
$db = mysql_select_db("xxx", $connection)
or die("couldnt select db");
$query = "UPDATE `xxx` SET `num_downloads`=`num_downloads` + 1 WHERE `id` = '".$id."'";
$result = mysql_query($query)
or die("query faild" . mysql_error());
$query = "SELECT `url` FROM `xxx` WHERE `id` = '".$id."'";
$result = mysql_query($query)
or die("query faild" . mysql_error());
header("Location:'".$result['url']."'");
?>