When i try the following structure, it does\'t send id=value
id=value
Isn't it because this would send a request to
some.php?id=vaule?name1=value1
instead of
some.php?id=vaule&name1=value1 ?
some.php?id=vaule&name1=value1
As far as I know a query string only has one "?" and a "?" is appended to the URL when you use GET parameters.