可以';我在joomla的帖子请求中得到了两个有空格的单词


Can't get 2 words with space in post request in joomla

Joomla中post请求中的问题空间。

txtstring="ABC DBC",但检索后txtstring只能获得ABC

HTML代码:

<input type='text' name='txtstring' id='txtstring'>

PHPcode(模块内):

echo $_POST['txtstring'];

结果:

ABC

我们需要=ABC DBC

如何在Joomla中固定两个单词之间的空格?

尝试在模块中使用JRequest::getString()。