Jump to content

Regarding $_GET


harikr

Recommended Posts

Hi ,

 

Please somebody help me out of this.

 

I am sending this variable

var comp="QE_QS8_Sprint #2";

 

to my php code through ajax call by sending like this.

var queryString = "?compDetails=" + comp; 

 

What happens is when i receive the compDetails through GET i receive only this "QE_QS8_Sprint".

 

Please anyone tell me why is it so and how can i send it so that i receive the full string. I need to send it only through GET and not POST

Link to comment
Share on other sites

Hi ,

 

Please somebody help me out of this.

 

I am sending this variable

var comp="QE_QS8_Sprint #2";

 

to my php code through ajax call by sending like this.

var queryString = "?compDetails=" + comp; 

 

What happens is when i receive the compDetails through GET i receive only this "QE_QS8_Sprint".

 

Please anyone tell me why is it so and how can i send it so that i receive the full string. I need to send it only through GET and not POST

 

Use this: http://www.php.net/manual/en/function.urlencode.php

Link to comment
Share on other sites

Yes you need urlencode() because for example,  you have a "space" and that is not an alpha-numeric character.  So what the urlencode does is parse the space to %20 I think.  A % then the 2 hex digits that correspond with the character so it can be passed through HTTP.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.