All Questions
Tagged with request.querystring php
10 questions
1
vote
1
answer
143
views
how to decode string on php. iconv decode is not work [duplicate]
request
http://a.com/?q=\xC3\xA2\xB0\xED
source
$str1 = "\xC3\xA2\xB0\xED";
$str2 = '\xC3\xA2\xB0\xED';
$str3 = $_GET['q'];
echo "string1 : " . mb_detect_encoding($str1) . "&...
0
votes
0
answers
47
views
unable to get query string value after URL rewriting?
I have this rule in my .htaccess file:
Options +FollowSymLinks
RewriteEngine on
RewriteRule ^pages/([a-zA-Z0-9_-]+)$ pages.php?alias=$1 [L]
URL structure is like website/pages/about-us
where about-...
-2
votes
1
answer
129
views
How to send/receive image in wordpress web services
I just wrote web services for wordpress like login, register, pass update, etc...
Now I want to user can upload images from iOS device and send this via web services(query string). I am not sure how ...
-1
votes
1
answer
1k
views
How to retrieve value in URL and store it in variable [duplicate]
I have an url like below
http://www.grcparfum.it/home.php?section=letteradelpresidente&lang=eng
in this URL language is english
lang=eng
i wanna call different JS file when lang is different
0
votes
3
answers
319
views
# tag On Php QueryString Not Working
I am facing a problem with passing query string. In my query string the value containing a # tag when i use $_REQUEST['string'] its only return the value which is write before of # tag. There is any ...
-2
votes
2
answers
205
views
taking safe input from url and making my input hacking safe
I have the following method in my php CRUD class:
//secure search method
function secureInput($ary = array()){
$this->connect();
$securedArray = array();
//print_r($...
4
votes
1
answer
1k
views
GET with hyphens raises error 403
I have a PHP script which handles callbacks from a payment processor.
If the querystring 'result' contains double dashes followed by a single, we are getting a 403, e.g.
/index.php?result=A--B- (...
0
votes
1
answer
249
views
querystring with codeigniter and facebox plugin
I am beginner in CI,
i used facebox plugin for loading a page [query result ] in CodeIgniter,
ie select all the datas from a table.
Its working properly,
The problem is i need to display only the ...
0
votes
3
answers
1k
views
Getting Data from Querystring in PHP
I don't know how to get data from the querystring in PHP.
I'd like to retrieve the data from the access_token.
http://www.mygridview.com/sephora/index.php?mod=config#access_token=170791786296375|...
0
votes
2
answers
67
views
Extracting Query String From eExteranl
Is it possible (and appropriate) to open a new window to an external URL, have my users process a form on that site (which generates a query string with name/value pairs) and then parse the pairs of ...