Quote:
Originally Posted by rogersnm
OK so i have this:
PHP Code:
$chocolate = $vbulletin->db->query_read(" SELECT column1 FROM " . TABLE_PREFIX . "test WHERE columnfudge > '999' LIMIT 1 "); $vbulletin->db->query_write(" INSERT INTO " . TABLE_PREFIX . "test (column1,columnfudge) VALUES ('[2] $chocolate','0') ");
in a cron. When the cron runs it picks up value of $chocolate (which is abc in this case) It doesn't add it as "[2] abc" and "0" it does "[2] Resource id #18" and "0". Any Ideas?
|
From the code above the value of $chocalate is not the what you may expect it to be, it's actually a resource variable. (As you can tell from the what you get in the database: "Resource id #18".
Use:
PHP Code:
$db->query_first
instead of $db->query_read on your first query, since you are only pulling up one value.