Open BloodyEagle opened 1 year ago
$data = array( 'corp' => $_REQUEST['corp'] ); $insertId = \QB::table('corp')->where('id', $id)->update($data);
if you pass in 'corp' the value 'micro"soft"', then only 'micro' will be written. when using insert, the data is written without errors.
$data = array( 'corp' => $_REQUEST['corp'] ); $insertId = \QB::table('corp')->where('id', $id)->update($data);
if you pass in 'corp' the value 'micro"soft"', then only 'micro' will be written. when using insert, the data is written without errors.