Quote:
Originally Posted by Xenon
hmm, i cannot see anything wrong there
can you please post 5 lines before and after that line as well, maybe it's just something simple somewhere else 
|
thnx for quick reply xenon
i am customized the vbgarage mod
here are some more lines
PHP Code:
$result_user = $DB_site->query("
SELECT * FROM " . TABLE_PREFIX . "myrig_users WHERE userid = $id
");
$user = $DB_site->fetch_Array($result_user);
if (empty($user)) {
$DB_site->query("
INSERT INTO " . TABLE_PREFIX . "myrig_users (userid, text, processor_type, cpu_speed, oced_speed, mobo_manf, mobo_model, memory, video_card, video_chipset, 3DMark_2001SE, 3DMark_2003, Aquamark ,lastactivity) VALUES ($id, '" . addslashes($text) . "', '" . addslashes($processor_type) . "', '" . addslashes($cpu_speed) . "', '" . addslashes($oced_speed) . "', '" . addslashes($mobo_manf) . "', '" . addslashes($mobo_model) . "', '" . addslashes($memory) . "', '" . addslashes($video_card) . "', '" . addslashes($video_chipset) . "', '" . addslashes($3DMark_2001SE) . "', '" . addslashes($3DMark_2003) . "', '" . addslashes($Aquamark) . "', '" . time() . "')
");
}
else
{
$DB_site->query("
UPDATE " . TABLE_PREFIX . "vbgarage_users SET text = '" . addslashes($text) . "', processor_type = '" . addslashes($processor_type) . "', cpu_speed = '" . addslashes($cpu_speed) . "', oced_speed = '" . addslashes($oced_speed) ."',mobo_manf = '" . addslashes($mobo_manf) ."', mobo_model = '" . addslashes($mobo_model) ."', memory = '" . addslashes($memory) ."', video_card = '" . addslashes($video_card) ."', video_chipset = '" . addslashes($video_chipset) ."', 3DMark_2001SE = '" . addslashes($3DMark_2001SE) ."', 3DMark_2003 = '" . addslashes($3DMark_2003) ."', Aquamark = '" . addslashes($Aquamark) ."', lastactivity = '" . time() . "' WHERE userid = $id
");
}
$result_image = $DB_site->query("
SELECT myrigid,name FROM " . TABLE_PREFIX . "myrig_images WHERE userid = $id
");
i am trying to make something like this
http://forums.extremeoverclocking.com/myrig.php