Passing strange text as variables via post method in php - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T21:16:41Z http://stackoverflow.com/feeds/question/972120 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/972120/passing-strange-text-as-variables-via-post-method-in-php 0 Passing strange text as variables via post method in php The Digital Ninja 2009-06-09T19:45:07Z 2009-06-09T20:48:46Z <p>I have an odd problem. Our company collects data and we use a HORRIBLE piece of software to handle all of our phone interviewing. It uses binary files instead of SQL and uses no compression. As of right now we have to manually run all reports for the clients. I am working on building a web interface to our data and common reports.</p> <p>Now I need to pass whats called a "select statement" from the web to the server and I do this with php post method. The problem is that web browsers don't seem to like some of the characters that have to be used in select statements. I have tried encoding them but then the browsers auto uncode them back to plain text when they are hyperlinks. </p> <p>Here are some example select statements. </p> <pre><code>[3023.2#1] [3023.2$] = "1" [3023.2&lt;&gt;1] [500.10$] = "Name" </code></pre> <p>And the url would look something like</p> <pre><code>CustomReport.php?type=1&amp;select="[3023.2#1]" </code></pre> <p>The problem I have is that different select statements break the website depending on quotes used. select=[3023.2&lt;>1] wont work but select="[3023.2&lt;>1]" does. BUT if I do select=[3023.2#1] it will work and using quotes will break it. And when it breaks it neither WebDev toolbar nor FireBug report any errors but its obvious my DIVs are all messed up.</p> <p>I should also add that nowhere is the select statement displayed on the site, it is only used in php as part of an exec command so I'm really confused as to why this breaks my site.</p> <p>/Ropes End <br /> //Probably something stupid</p> http://stackoverflow.com/questions/972120/passing-strange-text-as-variables-via-post-method-in-php/972141#972141 1 Answer by Machine for Passing strange text as variables via post method in php Machine 2009-06-09T19:48:44Z 2009-06-09T19:48:44Z <p>And you have tried url-encoding only the select part?</p> <pre><code>$queryString = 'select=' . urlencode($select); </code></pre> http://stackoverflow.com/questions/972120/passing-strange-text-as-variables-via-post-method-in-php/972150#972150 0 Answer by Benny Wong for Passing strange text as variables via post method in php Benny Wong 2009-06-09T19:50:03Z 2009-06-09T19:50:03Z <p>For each of the parameters, you should use <code>urlencode</code> to escape the characters:</p> <pre><code>$select = urlencode("[3023.2#1]"); </code></pre> <p>via <a href="http://us2.php.net/urlencode" rel="nofollow">http://us2.php.net/urlencode</a></p> http://stackoverflow.com/questions/972120/passing-strange-text-as-variables-via-post-method-in-php/972166#972166 0 Answer by adept for Passing strange text as variables via post method in php adept 2009-06-09T19:53:30Z 2009-06-09T19:53:30Z <p>Try using the urlencode/urldecode functions on your select strings. This should encode all the weird characters correctly.</p> <p>also be careful with the exec command. Its convenient but dangerous. </p> http://stackoverflow.com/questions/972120/passing-strange-text-as-variables-via-post-method-in-php/972179#972179 0 Answer by Steve for Passing strange text as variables via post method in php Steve 2009-06-09T19:56:22Z 2009-06-09T19:56:22Z <p>You could also forgo using POST. Instead, store the statement in a session variable, database, or temp file, then retrieve for processing on the next page. </p> <p>If you use a database, use a binary type text field with utf8 encoding, which should allow you to handle strange characters.</p> http://stackoverflow.com/questions/972120/passing-strange-text-as-variables-via-post-method-in-php/972280#972280 3 Answer by artlung for Passing strange text as variables via post method in php artlung 2009-06-09T20:19:10Z 2009-06-09T20:19:10Z <p>You want to research <a href="http://php.net/rawurlencode" rel="nofollow">rawurlencode</a> and <a href="http://php.net/htmlentities" rel="nofollow">htmlentities</a>. They should help you immensely. </p> <p><em>Aside: The note from anonymous to be cautious passing executable commands over urls MUST be heeded. It sounds like your application is not on the public web, but if it is you need to be mindful of the security issues associated with that.</em></p> <pre><code>&lt;?php $select_statements = array( '[3023.2#1]', '[3023.2$] = "1"', '[3023.2&lt;&gt;1]', '[500.10$] = "Name"', ); foreach ($select_statements as $ss) { print htmlentities($ss); print "&lt;br&gt;"; $url = $_SERVER['PHP_SELF'] . "?type=1&amp;amp;select=" . rawurlencode($ss); print "&lt;a href=\"{$url}\"&gt;{$url}&lt;/a&gt;"; print "&lt;br&gt;"; print "&lt;br&gt;"; } print htmlentities($_GET['select']); ?&gt; </code></pre> <p>Results (for me):</p> <blockquote> <p>[3023.2#1] /CustomReport.php?type=1&amp;select=%5B3023.2%231%5D</p> <p>[3023.2$] = "1" /CustomReport.php?type=1&amp;select=%5B3023.2%24%5D%20%3D%20%221%22</p> <p>[3023.2&lt;>1] /CustomReport.php?type=1&amp;select=%5B3023.2%3C%3E1%5D</p> <p>[500.10$] = "Name" /CustomReport.php?type=1&amp;select=%5B500.10%24%5D%20%3D%20%22Name%22</p> </blockquote> <p>And if I click on a link I will also see whichever select I put in. Properly put into html entities, of course.</p> http://stackoverflow.com/questions/972120/passing-strange-text-as-variables-via-post-method-in-php/972412#972412 0 Answer by jmucchiello for Passing strange text as variables via post method in php jmucchiello 2009-06-09T20:48:46Z 2009-06-09T20:48:46Z <p>Why are you using the values on the GUI to build your query statement directly? You should have all of these "queries" hiding on the server in a map to sane values and only except the sane values from the web client:</p> <pre><code> $queries = Array( 'meaningfulname1' =&gt; '[3023.2#1]', 'meaningfulname2' =&gt; '[3023.2$] = "1"', 'meaningfulname3' =&gt; '[3023.2&lt;&gt;1]', 'meaningfulname4' =&gt; '[500.10$] = "Name"', ); </code></pre> <p>Then your URL is simply</p> <pre><code> CustomReport.php?type=1&amp;select=meaningfulname1 </code></pre> <p>Now you can easily translate "meaningfulname1" into the proper code sequence needed by your software and you aren't exposing the backend craziness to the browser. This also means if you somehow fix your backend to use some other query language (like SQL) you don't need to recode the GUI layer. It still requests meaningfulname1.</p>