Jump to content

[SOLVED] Session is not encoding my string properly


parka

Recommended Posts

It seems like my sessions are not encoding my string properly. I can't seem to remember needing to set the encoding or charset or whatever.

 

Here's my code.

 

$sString = 'television’s';
$_SESSION['badstring'] = $sString;
echo $_SESSION['badstring'];

// Prints televisionÕs

 

Note the typographer's quote mark after the word 'television'.

 

It prints televisionÕs instead of television’s

 

Any ideas how to solve this?

I do not know if the pages Content-Language is set to something else maybe that affects it?

 

Check your phpinfo and if anything weird is going on with the language. Or maybe it is giving out garbled junk with sessions cause the session files are being trashed?

 

But yea, check your configurations etc.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.