如何在javascript和php中编码和解码印地文内容

时间:2016-10-22 10:03:00

标签: php ajax

我想从我的自定义php页面发送Hindi消息。为此,我使用了ajax请求。

如何在发送ajax之前使用JavaScript encode并在decodephp function发送它?

修改

这是我的代码:

...
var message = ''; // here I am getting content from form field dynamically
var ajaxBlockUrl = '/my.php?action=custom&mobile=999999999&message='+message;
Ajax.Request(ajaxBlockUrl, 
{
    parameters: {isAjax: 'true', form_key: FORM_KEY},
    onSuccess: function(response) 
    {
        //
    }
});
...

0 个答案:

没有答案