07-24-2009, 11:27 PM
|
#1 (permalink)
|
|
The Visitor
Join Date: Jun 2009
Posts: 4
Thanks: 0
|
Not Valid, Db Connection Error?
I get an error for my shppoing cart realted to the downalod link.
Code:
Warning: mysql_fetch_row(): supplied argument is not a valid MySQL result resource in /home/imdoll/public_html/dl/index.php on line 14
The code on the download page is..
Code:
k = $_GET["k"];
$info = explode("|", $k);
//check the exp date
$q1 = "select ExpDate from dd_orders_info where OrderID = $info[0]";
$result = mysql_query($q1);
while ($res = mysql_fetch_row($result)) line14
{
$exp = $res[0];
$ItemID = $res[1];
}
if($exp < $t)
{
echo "<br><br><br><center><font face=verdana size=2 color=red><b>Your download link is not active and<br>you are not able to download this file!";
exit();
}
Does anyone know what the error could be?
Thanks.
|
|
|
|