i am using this column
'NickName' => array('type' => 'string', 'max' => 150)
now when the string needs to be updated or inserted contains a $w or other letters after the $, the core spits errors like "undefined variable $w on line..."
i managed a workaround so i replace the "$w" with a "($)w" then the insert and update works fine but that needs to convert every nickname before inserting and after selecting to output the real nickname agein.
function db_nick($str_in)
{
return str_replace('$','($)',$str_in);
}
function game_nick($str_in)
{
return str_replace('($)','$',$str_in);
}
is there a soulution yet ?
