Jump to content

cURL foreign language encoding problem


hotdog1983

Recommended Posts

Hi guys, I've been struggling with this cURL code that post variables in foreign languages to another site.

 

I tried to encode the UTF-8 characters to html entities before posting them via cURL and

 

I tried lots of these variations...

 

$firstname = htmlentities($_POST['firstname'],ENT_COMPAT,'UTF-8');
$firstname = htmlentities($_POST['firstname'],ENT_COMPAT); 
$firstname = htmlentities($_POST['firstname'],ENT_QUOTES);
$firstname = iconv('utf-8','iso-8859-1',$_POST['firstname']);
$firstname = iconv('utf-8','windows-1253',$_POST['cfirstname']);
and so on...

 

but the foreign characters I get through cURL look like

 

����� �� �구���?

 

The way I want to see them is something like this I believe it's called html entities

 

안녕하세요 저는

 

so I can see all the other languages on an iso-8859-1 page.

 

 

Is it possible for cURL to post the variables in html entities?

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.