I am using Delphi 7 and ICS components to communicate with php script and insert some data in mysql database...

How to post unicode data using http post ?

After using utf8encode from tnt controls I am doing it to post to PHP script 

    <?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);
    ?>

Delphi 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;

But when I post that unicode value is totally different then original one that I see in Tnt Memo

Is there something I am missing ?!

Also anybody knows how to do this with Indy?

Thanks.