Hello,
My script working on old versions of MySQL but not working after line 81. can you please help me on this one?
here is the code that is not executed with me .
// Delete User And Add It To Paid Table
$sql="select * from next where id='$id2'";
$res=mysql_query($sql) or die ("MySQL Problem : " . mysql_error());
$row=mysql_fetch_array($res) or die("MySQL Problem : " . mysql_error());
$user3=@$row[user];
$egold3=@$row[egold];
$spot3=@$row[spot];
$email3=@$row[email];
$sqll="INSERT INTO `paid` VALUES ('' , '$user3' , '$egold3' , '$spot3' , '$email3')";
mysql_query($sqll) or die ("MySQL Problem : " . mysql_error());
$sql2="DELETE from `next` where id='$id2' limit 1";
mysql_query($sql2) or die ("MySQL Problem : " . mysql_error());
-- This message may have been cut off and the rest will only be shown to members. To become a member, click here --