vote up 0 vote down star

i have a php script and i'm using ajax with it . i have a textarea form connect with the ajax class

the problem when i pass a text like ( &some text ) the function return an empty text ,i geuess that i have a problem with (&) , what is the problem here ?

here the javascript function

function sendFormData(idForm, dataSource, divID, ifLoading)
{
  var postData='';
  var strReplaceTemp;

  if(XMLHttpRequestObject)
  {
    XMLHttpRequestObject.open("POST", dataSource);
    XMLHttpRequestObject.setRequestHeader("Method", "POST " + dataSource + " HTTP/1.1");
      XMLHttpRequestObject.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");

    XMLHttpRequestObject.onreadystatechange = function()
    {
      if (XMLHttpRequestObject.readyState == 4 &&
          XMLHttpRequestObject.status == 200)
      {
        try
        {
          var objDiv = document.getElementById(divID);
          objDiv.innerHTML = XMLHttpRequestObject.responseText;
        }
        catch(e){document.write("sendFormData: getElementById(divID) Error");}
      }
      else
      {
        if(ifLoading)
        {
          try
          {
            var objDiv = document.getElementById(divID);
            objDiv.innerHTML = "<img src=loading.gif>";
          }
          catch(e){document.write("sendFormData->ifLoading: getElementById(divID) Error");}
        }
      }
    }

    for(i=0; i<document.getElementById(idForm).elements.length - 1; i++)
    {
      strReplaceTemp = document.getElementById(idForm).elements[i].name;
      postData += "&aryFormData["+strReplaceTemp+"][]="+document.getElementById(idForm).elements[i].value;
    }

    postData += "&parm="+new Date().getTime();
    try
    {
      XMLHttpRequestObject.send(postData);
    }
    catch(e){document.write("sendFormData: XMLHttpRequestObject.send Error");}
  }
}
flag

70% accept rate
Can you post a snippet of the code that you are using? It might be easier to answer if we know the context of your question. – Vincent Ramdhanie Nov 4 '08 at 19:39
1  
This post seriously could use a better title. – bart Nov 4 '08 at 20:41
Oh my, hand-written AJAX. /shudder – Peter Bailey Nov 4 '08 at 21:24

4 Answers

vote up 0 vote down

In your function, if you wrap document.getElementById(idForm).elements[i].value and even strReplaceTemp (in your postData +=) line with "encodeURI()", you won't have any issues with the data being properly received.

link|flag
If its not working, then your PHP is likely to blame. You could try escape or encodeURIComponent instead of encodeURI, but encodeURI should do the trick. When you throw an alert(postData) inside of your try, what does it say? – Eric Caron Nov 4 '08 at 23:26
vote up 1 vote down

Make sure your & is encoded with &amp; if you're passing it using Javascript. All & need to be encoded, or some browsers can freak out a bit, and any validater will complain at you.

link|flag
vote up 0 vote down

when i see HTML and & and problem, i look to make sure that my character encoding is all properly specified.

also, the code in your PHP script may be choking on an un/escaped '&' character.

link|flag
vote up 0 vote down

maybe the function.. But how should we know if we don't see the function :)

link|flag
i post it ........ – Waseem Nov 4 '08 at 19:44

Your Answer

Get an OpenID
or

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