Hello. I&#39;ve recently been developing an article-writing website with plt-web-server, and I&#39;ve come across a problem with url queries. My code for the page is:<br><br>(module post<br>&nbsp; mzscheme<br>&nbsp; <br>&nbsp; (require (lib &quot;servlet.ss&quot; &quot;web-server&quot;))<br>
&nbsp; <br>&nbsp; (provide start interface-version timeout)<br>&nbsp; <br>&nbsp; (define interface-version &#39;v1)<br>&nbsp; (define timeout +inf.0)<br>&nbsp; <br>&nbsp; (define (start initial-request)<br>&nbsp;&nbsp;&nbsp; (send/finish<br>&nbsp;&nbsp;&nbsp;&nbsp; `(html<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (body (p (format &quot;~a&quot; (request-bindings initial-request))))))))<br>
<br>When I go to <a href="http://localhost:8080/servlets/post.ss?x=2">http://localhost:8080/servlets/post.ss?x=2</a> , all I get is:<br><br>~a&amp;initial-request;<br><br>. This is just a test to see if the bindings environment exists. All I really want, is the value of x. Is there anything that I am doing wrong here? Thank you.<br>
<br>Justin Paston-Cooper<br>