Spaces stripped from URL parameters
-
I am using a PHP execution plugin (PHP Execution and Exec-PHP). I’ve used these two plugins successfully for more than 2 years. With the latest Word Press upgrades, I started seeing some issues. Here’s the latest:
I have a WordPress page, let’s call it:
http://myblog.com/mypage/
Inside the page, I have the following:
<?php
include myscript.php;
?>
myscript.php displays a form, that lets me fill some fields, and the form’s action is http://myblog.com/mypage/When I click on submit, I am expecting to see:
http://myblog.com/mypage/?param1=test+1¶m2=this+is+a+test
instead, I see:
http://myblog.com/mypage/?param1=test1¶m2=thisisatestThe spaces are stripped out, and there is no urlencoding. Any ideas?
The topic ‘Spaces stripped from URL parameters’ is closed to new replies.