Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've an input text field.

On press enter, i'm performing the following action

function doWork(){    
         httpObject = getHTTPObject();
         if (httpObject != null) {
            link = "message.php?nick="+nickName+"&msg="+document.getElementById('msg').value;
            httpObject.open("GET", link , true);
            httpObject.onreadystatechange = setOutput;
            httpObject.send(null);
         }
      }

What I want is to "urlencode" the value.

How should I do that??

share|improve this question

2 Answers

up vote 1 down vote accepted

Use the JavaScript function encodeURIComponent

link = "message.php?nick="+nickName+"&msg="+encodeURIComponent(document.getElementById('msg').value);

share|improve this answer
at the receiving file (ie message.php here), i use $_GET['msg']. Now how do I store the decoded value into a php variable? Something like, $message = decodeURIComponent($_GET['msg']) – ptamzz Oct 16 '10 at 6:01
You shouldn't need to decode it -- PHP will decode it for you when parsing the URL (or the request body, in the event of a POST) and populating the request variables. – cHao Oct 16 '10 at 6:12
im not sure of that. If I'm inserting the variable string $_GET['msg'] to the database.. so won't it insert the special chars in the encoded format?? thanks – ptamzz Oct 16 '10 at 12:29

Just wrap the value with "escape" as in:

link = "message.php?nick="+nickName+"&msg="+escape(document.getElementById('msg').value);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.