<div dir="ltr">I am working on the Printing code from the wiki using the new ver. 2.7 OpenLayers.Request.POST/GET. The problem is that data is not appearing in PHP's @$_REQUEST array. For example:<br><br>var printURL = '<a href="http://www.host.com/lib/printMap.php">http://www.host.com/lib/printMap.php</a>';<br>
var size = map.getSize();<br>var postParams = 'width=' + size.w + '&height=' + size.h;<br>new OpenLayers.Request.POST({url:printURL, data:postParams, callback:printDone});<br><br>results in an empty REQUEST array. Firebug says width=500&height=500 is posted. Same for GET:<br>
<br>var printURL = '<a href="http://www.host.com/lib/printMap.php">http://www.host.com/lib/printMap.php</a>';<br>
var size = map.getSize();<br>var getParams = {width: size.w, height: size.h};<br>new OpenLayers.Request.GET({url:printURL, params:getParams, callback:printDone});<br><br>Submitting parameters directly (eg. <a href="http://www.host.com/lib/printMap.php?width=500&height=400">http://www.host.com/lib/printMap.php?width=500&height=400</a>) does place the values in the REQUEST array. I'm following the examples at <a href="http://trac.openlayers.org/wiki/Request">http://trac.openlayers.org/wiki/Request</a> and using Apache 2/PHP 5.2.6/Firefox 3.03. Am I missing something?<br>
</div>