Quote:
Originally Posted by calorie
One idea, assuming strings...
Code:
$db->query_write("INSERT INTO " . TABLE_PREFIX . "user
(field_1, field_2, field_3)
VALUES
(
'" . $db->escape_string($value_1) . "'
'" . $db->escape_string($value_2) . "'
'" . $db->escape_string($value_2) . "'
)
");
|
I've tried sql queries and I tried this one too -- I get this error:
Quote:
Fatal error: Call to a member function on a non-object in /path/to/me/CMN/includes/class_dm_user.php(183) : eval()'d code on line 1
|
Quote:
Originally Posted by ragtek
1. a plugin at hook: userdata_start
PHP Code:
$this->validfields['myfield'] = array(TYPE_UINT, REQ_NO);
2. plugin useradmin_edit_column2
PHP Code:
print_input_row($vbphrase['myuservalue1'], 'user[myfield]', $user['myfield'], 0);
|
I was using this exactly for input fields and it works fine. I just need an "invisible" input row -- like the the HTML equivalent of a preset value in a form, but that value needs to be the same as my value 2.