0
votes
1answer
27 views

Secure URL functions?

My company's website just got hacked, and I'm now restoring the website with extra caution. The company wants the site up as soon as possible so I don't have enough time to actually re-code the ...
0
votes
1answer
35 views

how to properly escape data with javascript for query string for decoding in PHP [duplicate]

I'm trying to create a query string, which passes all form elements and the entered data via a GET request to a PHP file. I'm using encodeURIComponent in JavaScript to encode the input field names as ...
0
votes
1answer
21 views

POST inputed data to the query string - php

Im trying to use the query string to pass data from page to page, i understnad how to pass the fixed data, ie if you clicked a button that would send you to page A and add a fixed query to the string. ...
0
votes
3answers
36 views

# in query string breaks php GET

Running into a problem with a form I have built. A user typed in a hash (#) for their address in the address field. When their address is put into a query string after the form is submitted all of my ...
1
vote
4answers
28 views

Selecting Radio Option based on Query String

I'm having some trouble with selecting the radio option affiliated to the query string. I have the following code in place... <?php if ( $_GET['fp'] == 'floorplanfive' ) { ?> <script ...
0
votes
0answers
39 views

Removing PHP extension and rewriting query string with .htaccess

I'm using extension-less URLs but now want to also support query strings but have them seo friendly. I want to be able to use URLs like: domain.com/somefile/1234 OR domain.com/somefile/1234/delete ...
-1
votes
2answers
43 views

Trouble with mySQL query. Need * instead of ' * '

I have the following code that doesn't work. It doesn't work because it will do a query WHERE column = ' * ', instead of WHERE column = * I tried to think of a way to get it so it will do WHERE ...
0
votes
1answer
13 views

Server doesn't recognize file with GET

I have a problem with server and too upset and don't know what to do, never met such problem. The index2.php file is ok and working, but when I add $_GET it doesn't find the file. For example ...
2
votes
1answer
17 views

query string gets ignored after mod_rewrite

I am using the following rewrite rule in my .htaccess file to send all requests to the index.php file located at the root: RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d ...
0
votes
3answers
33 views

assign a new value to a $_GET variable

We always retrieve the value in a $_GET['var'], but is it possible to assign a value as well? I have a php page where at one point, through ajax, I want to stay on the same page but change the query ...
0
votes
4answers
82 views

How to get variable in url

I am having problem in getting variable from one PHP page to another PHP page. The problem is I can't get the variable. I use this code to move to another page : $updateGoTo = "closeticketscs.php"; ...
0
votes
4answers
62 views

Adding a query string to a random URL

I want to add a query string to a URL, however, the URL format is unpredictable. The URL can be http://example.com/page/ -> http://example.com/page/?myquery=string http://example.com/page -> ...
1
vote
2answers
51 views

$_GET Returning Null

I feel like I'm doing some simple, stupid mistake. I have a very simple page that I'm using for testing. But I can't figure out why this doesn't work. Been searching for an answer for over an hour. ...
1
vote
1answer
53 views

find parameters in url using php

I am searching for a way to find a url that contains a parameter to extract a dynamic value example, anywhere on my website there is a button with a link that contains characters ...
-1
votes
2answers
76 views

PHP Added to query string on submit

I have a text field and a submit button, when I click on the submit button I want to add on to my query string. example http://www.fakewebsite.com/?name=mike But my name appears blank Here is my ...
0
votes
0answers
33 views

ajax and strpos that checks current url with querystring

Below is my code to check current URL, if its in www.mysite.com/showcase it will show something. Inside this if statement are check boxes options that when ticked reload content via AJAX. It works ...
0
votes
2answers
65 views

PHP validating query string if statement

This seems like it should be easy but I can't for the life of me get this to work, I'm checking a variable in a query string, if it returns a Yes it redirects to a new page. If it returns a no I want ...
1
vote
4answers
246 views

CakePHP: “GET” form does not auto-populate form fields after submission

I'm using Cake 2.3.0. If I submit my form using POST, the selected form fields carry over however if I submit my form using GET, all of the form fields return to their default values. Is there a way ...
0
votes
2answers
78 views

How to create a redirect page within a query string in javascript?

I have a website which changes the content of the page depending on what the user puts into the url. There is only one page, but it seems like there are more because of the .htaccess I have used. ...
0
votes
2answers
58 views

How can I convert a query string to variables in PHP?

I have a string like this stored in mysql table: ?name1=value1&name2=value2&name3=value3 originally this data was only going to be used to send GET data to another script but now i find ...
-2
votes
1answer
262 views

Cakephp: Appending query string to view url in the controller [closed]

I am looking for a way to render a view with a specific query string at the end of the url in cakephp. Two catches: 1) I need to set the query string in the controller 2) I can't use redirect as ...
0
votes
0answers
46 views

Giving access to user to update their info in mysql permissioned by query string variables

How secure or problematic is this? Giving access to user to update mysql permissioned by 3 query string variables. (I'm looking for a multi user username / password php / mysql script with password ...
0
votes
3answers
101 views

$_SERVER['QUERY_STRING'] with |

I'm using $_SERVER['QUERY_STRING'] in my PHP script. My query string of ?e+e works fine, but ?e|e does not. My PHP script is simply: <?php echo $_SERVER['QUERY_STRING']; ?> Why doesn't | ...
-1
votes
1answer
195 views

How to hide query strings from url in php?

Im trying to make a message system and when the receiver is reading a message theres a link to reply the message, as follow: <a ...
0
votes
1answer
77 views

Using QueryString to include pages

I program in PHP and am trying to learn C#, but I'm having some difficulties. In PHP, I have a function include_once() to include other pages using the global $_GET. I use this code in PHP with ...
1
vote
3answers
43 views

Unsure how URL is constructed in php website

There is an html table in my page with 3 columns, each one of them contains a form like this <form id="filter" method="get" action="advanced_search_result.php"> <input type="hidden" ...
1
vote
1answer
70 views

Removing a querystring in PHP and reloading the page

Whats the best way in PHP to reload the page I'm on with all the previous query string values removed from the URL?
-2
votes
1answer
49 views

Using a querystring value in a PHP if statement [closed]

How do I write an IF condition in PHP that checks to see if the URL contained a query string item called 'first' and its value is set to 'true'?
2
votes
2answers
118 views

Does PHP take care of the character encoding of variables in $_GET and $_POST? (PHP 5.4)

My script is written in UTF-8 and the MySQL database tables it uses have the collation utf8_unicode_ci. Now if I want to compare strings from $_GET/$_POST with 'internal' strings from the ...
1
vote
1answer
96 views

PHP - Looping through a QueryString

Trying to loop through a querystring in php but only getting last value. What should I be doing to get all values? example: querystring = ?style=ranch&style=barn&style=colonial php: ...
0
votes
1answer
110 views

Apache Url Rewrite Query String SEO

I have the following rewrite. RewriteRule ^/news/([a-z0-9\-]+)/([a-z0-9\-]+)/?$ /pagebase.php?pbid=3656&nid=$1&title=$2 [QSA,L,I] http://www.domain.com/news/1/new-event/ So that the above ...
1
vote
2answers
149 views

check query string under if condition using codeigniter

hey i want to check type of query string in if condition what is the right way to do this pls help . . my url is something like this . . http://localhost/kccs/index.php/dbcont/addnew?type=moderator ...
1
vote
1answer
87 views

How to rewrite a url with a question mark?

Is it possible to rewrite an url with a question a mark in it? For instance, http://localhost/mysite/search?tag=mars to become this, index.php?url=search&tag[key_name]=mars I tried with ...
3
votes
2answers
79 views

How can I use several form inputs with the same name?

I have several checkbox (I don't know number of them) that create from a loop in a form. <form> <input type="checkbox" name="id" value="id"> <input type="checkbox" name="id" ...
1
vote
1answer
154 views

Facebook like box not allowed additional query string from wordpress site?

I am unable to share wordpress page with my custom query string in facebook like box using facebook api. for example http://www.example.com/?page_id=10&myquery=10 after hit like button ...
-1
votes
2answers
129 views

Larvel : To use $_GET or $_POST for search

In all laravel tutorials, they use the POST method for forms. For searching, I thought it was better to have the FORM use GET instead, so that as soon as the the form gets submitted, the query string ...
0
votes
1answer
65 views

Amazon search widget 2.0, how can i pull in a keyword from a querystring via “q=”?

Sorry to be a pain but i seem to be stuck and cant find any help anywhere on my issue. I currently have a search box and upon submit of a keyword/phrase (in my example i will say CARS) the query ...
0
votes
1answer
228 views

PHP QueryString 404 Object Not Found

I am an Android developer having very little knowledge of PHP. I am stuck with this problem of getting 404 Error Object Not Found when reading variables from query string. I added .htaccess file as a ...
1
vote
3answers
76 views

Array Serialization Issue

I'm storing some information which has been serialized by using jQuery into a MySQL database : $(function () { $("#sortable").sortable({ stop: function (event, ui) { ...
0
votes
6answers
140 views

php reload page with updated query string

let say I have an url like this http://www.domain.com/myscript.php?p1=xyz&p2=10&p3=ghj Now i want to update p2=100 and reload the page using php here parameters can be unlimited ...
0
votes
4answers
99 views

PHP: How to check total no. parameters in URL?

i am retrieving the parameters using $_REQUEST. Is there a way of finding total no. of parameters in URL instead of retrieving each one and then counting ?
0
votes
1answer
97 views

IIRF / APACHE Rewrite Conditions Fail with query string

I have a CMS System that converts the ugly URLs into more friendly ones. So far instanstance, instead of the page url being something like this: /pagebase.php?id=3644 I have a url write setup ...
0
votes
2answers
83 views

Parse array in query string as array and not literally “array”

I have come across a unusual scenario where I need to turn a query string into an array. The query string comes across as: ?sort%5B0%5D%5Bfield%5D=type&sort%5B0%5D%5Bdir%5D=desc Which decodes ...
0
votes
3answers
131 views

PHP Create querystring from multidimensional array without using loop

I have a multidimensional array. Like this. Array ( [38] => Array ( [quantity] => 1 [price] => 149 [product_code] => 4578425 ) ...
0
votes
0answers
166 views

Parse ODATA query uri into PHP array

I have a client calling my web service written in PHP. While calling it, the client application gives a little query string to it. I want to parse this string into an array. So with the given example ...
0
votes
2answers
46 views

can I add “&” as in value of one field

I asked how can I add "&" in value of one of the params for example www.example.com/index.php?param1=m&c&param2=value2 It this possible ? I need to get it by the query_str() as ...
0
votes
1answer
55 views

Using a querystring to highlight a menu item

So I'm trying to use a query string to highlight a 'current' menu item. Say the url is www.....something.php?tag=Music And I'm looping through this code to check the $tag against a record in the ...
1
vote
1answer
125 views

sending array via query string in guzzle

Guzzle client creates by default from this code $client->get('https://example.com/{?a}', array('a' => array('c','d'))); this url https://example.com/?a=c,d What is the best practice to ...
1
vote
0answers
50 views

Malformed HTTP Queries

I had an interview question a while back where I was asked to write my own version of PHP's http_build_query function, which accepts a hash of keys and values to encode as parameters in a web request. ...
0
votes
2answers
97 views

remove one querty string from REQUEST_URI (PHP)

I'm having an issue removing a particular query string from a url. I want to keep the rest of the queries but simply dump the last one. The problem is the query string could have a different value ...

1 2 3 4 5 6