Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
4answers
4k views

What is the equivalent of JavaScript's encodeURIcomponent in PHP?

What is the equivalent of JavaScript's encodeURIcomponent in PHP?
3
votes
2answers
82 views

How to properly handle UTF-8 in PHP?

I'm trying to get our chat system to support UTF-8, but I'm failing. If, on the client side, I send the following message, passed through encodeURIComponent: îûôó And put this on the PHP end: ...
3
votes
2answers
211 views

how do I properly encode a URL in JavaScript?

I am working on a browser plugin that takes the URL of the current page or any selected link as a parameter and send it to our server. When characters of the basic latin alphabet are present in the ...
3
votes
4answers
221 views

∞ gets converted to ∞ when inserted into MySQL table

The infinity (∞) symbol gets converted to ∞ when it is inserted into my MySQL table by a PHP script, but if I insert it directly from phpMyAdmin, it inserts correctly. The symbol is passed to the ...
3
votes
2answers
2k views

Trouble encoding a u umlaut with in a .Net http handler

I have a JavaScript request going to a ASP.Net (2.0) HTTP handler which passes the request to a java web service. In this system special characters, such as those with an accent do not get passed on ...
2
votes
1answer
81 views

Encoding GBK2312 Condundrum

I am an amateur coder and I have a small problem. My goal is to have one text input with two buttons. The first button uses a bit of Javascript called SundayMorning to translate the text (to ...
2
votes
1answer
437 views

Handling of Japanese with Jquery.serialize();

Hoo boy. A weird one I guess! getting input from a form, I want to make sure there are no western characters, punctuation or numbers before sending it to a php script for creating some xml... from ...
1
vote
1answer
236 views

NodeJS encodeURI produces wrong result for ß

I am using Javascript's encodeURI / encodeURIComponent to encode a string containing the german "ß"-letter. Unfortunately nodejs encodes ß as %EF%BF%BD and not like for example Firefox does: %C3%9F ...
1
vote
1answer
107 views

encodeURIComponent and mysql_real_escape_string

I would like to ask you if it's necessary to use a mysql_real_escape_string() PHP function for data that I send into my DB in PHP ajax file if the data is encoded in my JS file using ...
1
vote
2answers
647 views

Firefox automatically decoding encoded parameter in url, does not happen in IE

I am having frustration between Firefox and IE, well mostly Firefox as it is automatically decoding a parameter in the hash before I can work with it in Javascript. IE does not automatically decode ...
1
vote
2answers
2k views

jQuery encodeURI for href not working

I'm having problems encoding a string so I can place a variable into a link. I'm sure this is really simple, but i had trouble turning anything up. $("a.inquiry").attr("href", "/inquiry/6933/text=" ...
1
vote
2answers
731 views

encodeURIComponent is really useful?

Something I still don't understand when perfoming an http-get request to the server is what the advantage is in using JS fucntion encodeURIcomponent to encode each component of the http-get. Doing ...
0
votes
1answer
49 views

Passing large encoded text from javascript (ajax) to a php file

I have a JavaScript variable which contains a large text string - containing latex + HTML code. I want to encode this and pass it to a PHP page, where it can be decoded and acted upon by the PHP ...
0
votes
0answers
44 views

How do I apply encodeURIComponent() before submit?

I'm trying to apply encodeURIComponent() to the data before submitting it to the server. I've tried : submitdata: function (value, settings) { return { value: encodeURIComponent(value) ...
0
votes
1answer
60 views

How to encode URL parameters?

I am trying to pass parameters to a URL which looks like this: http://www.foobar.com/foo?imageurl= and I want to pass the parameters suchas and image URL which is generated itself by another API, ...
0
votes
1answer
79 views

url decoding in asp.net

I have a form in asp.net with a few textboxes. I'm trying to post the values in them to the server using jquery ajax, but having problems. I'm using javascript encodeURIComponent for the values of the ...
0
votes
0answers
109 views

Setting filename using encodeURIComponent() to let user download data file

Alright, so I have this webpage page that gets its data using AJAX requests (in javascript using JQuery). Once the data has been loaded on to the users browser I want to let them download said data ...
0
votes
1answer
90 views

encodeURIComponent behaves differently in browsers for china as location

i have an interesting problem in hand that involves chinese.. i use google custom search and append searched keywords as below.. ...
0
votes
1answer
217 views

encodeURIComponent in c sharp

I've tried to use HttpUtility.UrlEncode in order to simulate the javscript's encodeURIComponent, but had some issues (instead of getting "%20" i got "+") then I've replaced the string, but i see that ...
0
votes
2answers
341 views

how can I javascript decodeURI in PHP?

I have a javascript which sends some specific information to a PHP api . Before to send it performs encodeURI . How can I "decode" it in PHP ? I understand that urldecode/urlencode is different that ...
0
votes
1answer
108 views

php+ajax+javascript: encodeURIComponent cuts my text when sending to the server

This is my first question... I hope my problem doesn't look stupid... html (any symbols are allowed) ---> javascript event ---> javascript function sends text to .php file using ajax method. Here ...
0
votes
5answers
52 views

Exempting characters in an escaped string

I have a little function that makes URL arguments out of an object: function MkArgs(o) { var ret = '?'; for (var i in o) { ret += i + '=' + escape(o[i]) + '&'; } return ...
0
votes
1answer
27 views

JS encodeURIComponenet not working

I have an incoming message hitting my XSL page. On this XSL page I have javascript to catch it and place the items in the appropriate places. There is the possibility that these messages can have ...
0
votes
1answer
162 views

EncodeURIComponent throwing “Object doesn't support this property or method” Error (IE 8)

The following line is throwing a Object doesn't support this property or method" Error on IE 8.0.6 on Windows XP. I've looked into the encodeURIComponent method and I've been unable to find anyone ...
0
votes
2answers
592 views

decodeURIComponent(uri) is not working?

I'm using Ajax to post contents, and I'm using http.send(encodeURIComponent(params)); for encoding ... but I'm unable to decode them in PHP. I'm using POST so I didn't think it required encode? I'm ...
0
votes
1answer
56 views

How efficient is encodeURIComponent?

How efficient is the encodeURIComponent implementations in major browsers? Is it worth memoizing calls to encodeURIComponent?
0
votes
2answers
184 views

encodeURIComponent and urldecode removes slashes, why?

Hello I am using JSON.stringify for an array of arrays, and it returns this: '[ ["<span pt=\"7.5\" idfont=\"Humnst777 Cn BT-Bold\">Javelin</span>","0","0"], ["<span ...
0
votes
2answers
1k views

JS encodeURIComponent result different from the one created by FORM

I thought values entered in forms are properly encoded by browsers. But this simple test file "test_get_vs_encodeuri.html" shows it's not true: <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 ...