Welcome Guest, Not a member yet? Register   Sign In
Save pound symbol to database
#6

[eluser]kirk112[/eluser]
Stumped

Code:
function escape_str($str)    
    {    
        if (is_array($str))
        {
            foreach($str as $key => $val)
               {
                $str[$key] = $this->escape_str($val);
               }
          
               return $str;
           }

        if (function_exists('mysql_real_escape_string') AND is_resource($this->conn_id))
        {
            return mysql_real_escape_string($str, $this->conn_id);
        }
        elseif (function_exists('mysql_escape_string'))
        {
            return mysql_escape_string($str);
        }
        else
        {
            return addslashes($str);
        }
    }

I am guessing that is the common escape_str function in codeigniter.

Ok, going to rule out a problem with this function.

Currently in the DB_drive.php i have following set

Quote:var $char_set = 'utf8';
var $dbcollat = 'utf8_general_ci';
And in the config file

Quote:$config['charset'] = "UTF-8";

And in the database.php config

Code:
$db['default']['char_set'] = "utf8";
$db['default']['dbcollat'] = "utf8_general_ci";

And the mysql table field is set to utf8_general_ci


Any one any suggestions?


Messages In This Thread
Save pound symbol to database - by El Forum - 01-28-2010, 10:31 AM
Save pound symbol to database - by El Forum - 01-28-2010, 04:06 PM
Save pound symbol to database - by El Forum - 01-29-2010, 12:22 AM
Save pound symbol to database - by El Forum - 01-29-2010, 12:25 AM
Save pound symbol to database - by El Forum - 01-29-2010, 12:29 AM
Save pound symbol to database - by El Forum - 01-29-2010, 01:20 AM
Save pound symbol to database - by El Forum - 01-29-2010, 01:32 AM
Save pound symbol to database - by El Forum - 01-29-2010, 01:33 AM
Save pound symbol to database - by El Forum - 01-29-2010, 01:49 AM
Save pound symbol to database - by El Forum - 01-29-2010, 01:59 AM
Save pound symbol to database - by El Forum - 01-29-2010, 03:21 AM
Save pound symbol to database - by El Forum - 01-29-2010, 03:28 AM
Save pound symbol to database - by El Forum - 01-29-2010, 04:48 AM
Save pound symbol to database - by El Forum - 01-29-2010, 05:02 AM



Theme © iAndrew 2016 - Forum software by © MyBB