我需要在表单中发送一些字符串。我使用foreach循环创建表单。像这样
foreach ($myArray as $key => $workingWith) {
... some work ....
echo '<input type="text" name="title['.$workingWith.']" >';
}
但我需要生成的网址看起来像
...php?title["someLiteral"]=someValue&.....
对我来说重要的是双引号。
重写发送和接收脚本是一个选项,所以如果我正在解决这个问题,请告诉我。收到的脚本不会识别不带引号的密钥作为密钥,那么什么解决方案最适合我?