How to do HTTP POST in Utf-8 -> php script -> mysql - Stack Overflow most recent 30 from stackoverflow.com2009-11-09T08:23:26Zhttp://stackoverflow.com/feeds/question/305265http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/305265/how-to-do-http-post-in-utf-8-php-script-mysql2How to do HTTP POST in Utf-8 -> php script -> mysqlIrfan Mulic2008-11-20T13:19:27Z2008-11-23T16:29:49Z
<p>I am using Delphi 7 and ICS components to communicate with php script and insert some data in mysql database...</p>
<p>How to post unicode data using http post ?</p>
<p>After using utf8encode from tnt controls I am doing it to post to PHP script </p>
<pre><code><?php
echo "Note = ". $_POST['note'];
if($_POST['action'] == 'i')
{
/*
* This code will add new notes to the database
*/
$sql = "INSERT INTO app_notes VALUES ('', '" . mysql_real_escape_string($_POST['username']) . "', '" . mysql_real_escape_string($_POST['note']) . "', NOW(), '')";
$result = mysql_query($sql, $link) or die('0 - Ins');
echo '1 - ' . mysql_insert_id($link);
?>
</code></pre>
<p>Delphi code : </p>
<pre><code> data := Format('date=%s&username=%s&password=%s&hash=%s&note=%s&action=%s',
[UrlEncode(FormatDateTime('yyyymmddhh:nn',now)),
UrlEncode(edtUserName.Text),
UrlEncode(getMd51(edtPassword.Text)),
UrlEncode(getMd51(dataHash)),UrlEncode(Utf8Encode(memoNote.Text)),'i'
]);
// try function StrHtmlEncode (const AStr: String): String; from IdStrings
HttpCli1.SendStream := TMemoryStream.Create;
HttpCli1.SendStream.Write(Data[1], Length(Data));
HttpCli1.SendStream.Seek(0, 0);
HttpCli1.RcvdStream := TMemoryStream.Create;
HttpCli1.URL := Trim(ActionURLEdit.Text);
HttpCli1.PostAsync;
</code></pre>
<p>But when I post that unicode value is totally different then original one that I see in Tnt Memo</p>
<p>Is there something I am missing ?!</p>
<p>Also anybody knows how to do this with Indy?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/305265/how-to-do-http-post-in-utf-8-php-script-mysql/305273#3052730Answer by boost for How to do HTTP POST in Utf-8 -> php script -> mysqlboost2008-11-20T13:22:22Z2008-11-20T13:22:22Z<p>I would expect (without knowing for sure) that you'd have to output them as &#nnnnn entities (with the number in decimal rather than hex ... I think)</p>
http://stackoverflow.com/questions/305265/how-to-do-http-post-in-utf-8-php-script-mysql/305276#3052762Answer by Martin OConnor for How to do HTTP POST in Utf-8 -> php script -> mysqlMartin OConnor2008-11-20T13:23:27Z2008-11-20T13:23:27Z<p>Encode the UTF-8 data in application/x-www-form-urlencoded. This will ensure that the server can read the data over the http connection</p>
http://stackoverflow.com/questions/305265/how-to-do-http-post-in-utf-8-php-script-mysql/306934#3069343Answer by Rob Kennedy for How to do HTTP POST in Utf-8 -> php script -> mysqlRob Kennedy2008-11-20T21:37:54Z2008-11-23T16:29:49Z<p>Your example code shows your data coming from a TNT Unicode control. That value will have type <code>WideString</code>, so to get UTF-8 data, you should call <code>Utf8Encode</code>, which will return an <code>AnsiString</code> value. Then call <code>UrlEncode</code> on that value. Make sure <code>UrlEncode</code>'s input type is <code>AnsiString</code>. So, something like this:</p>
<pre><code>var
data, date, username, passhash, datahash, note: AnsiString;
date := FormatDateTime('yyyymmddhh:nn',now);
username := Utf8Encode(edtUserName.Text);
passhash := getMd51(edtPassword.Text);
datahash := getMd51(data);
note := Utf8Encode(memoNote.Text);
data := Format('date=%s&username=%s&password=%s&hash=%s&note=%s&action=%s',
[UrlEncode(date),
UrlEncode(username),
UrlEncode(passhash),
UrlEncode(datahash),
UrlEncode(note),
'i'
]);
</code></pre>
<p>There should be no need to UTF-8-encode the MD5 values since MD5 string values are just hexadecimal characters. However, you should double-check that your <code>getMd51</code> function accepts <code>WideString</code>. Otherwise, you may be losing data before you ever send it anywhere.</p>
<p>Next, you have the issue of receiving UTF-8 data in PHP. I expect there's nothing special you need to do there or in MySQL. Whatever you store, you should get back identically later. Send that back to your Delphi program, and decode the UTF-8 data back into a <code>WideString</code>.</p>
<p>In other words, your Unicode data <em>will</em> look different in your database because you're storing it as UTF-8. In your database, you're seeing UTF-8-encoded data, but in your TNT controls, you're seeing the regular Unicode characters.</p>
<p>So, for instance, if you type the character "ش" into your edit box, that's Unicode character U+0634, Arabic letter sheen. As UTF-8, that's the two-byte sequence 0xD8 0xB4. If you store those bytes in your database, and then view the raw contents of the field, you may see characters interpreted as though those bytes are in some ANSI encoding. One possible interpretation of those bytes is as the two-character sequence "Ø´", which is the Latin capital letter o with stroke followed by an acute accent.</p>
<p>When you load that string back out of your database, it's still encoded as UTF-8, just as it was when you stored it, so you will need to decode it. As far as I can tell, neither PHP nor MySQL does any massaging of your data, so whatever UTF-8 character you give them will be returned to you as-is. If you are using the data in Delphi, then call <code>Utf8Decode</code>, which is the complement to the <code>Utf8Encode</code> function that you called previously. If you are using the data in PHP, then you might be interested in PHP's <code>utf8_decode</code> function, although that converts to ISO-8859-1, which doesn't include our example Arabic character. Stack Overflow already has a few questions related to using UTF-8 in PHP, so I won't attempt to add to them here. For example:</p>
<ul>
<li><a href="http://stackoverflow.com/questions/140728/best-practices-in-php-and-mysql-with-international-strings">Best practices in PHP and MySQL
with international strings</a></li>
<li><a href="http://stackoverflow.com/questions/279170/utf-8-all-the-way-through">UTF-8 all the way through…</a></li>
</ul>