我正在尝试编写一个代码,我需要将一个变量中的数据从URL获取到一个表单" action"但是表格动作网址中的可变数据是不可见的,因此无法继续前进,这是我可以提供的少量代码,请帮助我解决这个问题,原谅我在某处出错。
URL.php
http://www.***.com/***/pro_ppl.php?g_name=12&g_name=My%20group
formaction.php
echo '<form id="form" name ="form" method = "POST" action="move_ppl.php?g_id = "' . $_GET['g_name'] . '" class="wizard-big" autocomplete = "off" enctype="multipart/form-data">';
答案 0 :(得分:0)
将您的操作属性更改为
func textField(textField: UITextField, shouldChangeCharactersInRange range: NSRange, replacementString string: String) -> Bool {
if (string == ". ") {
return false
}
else {
return true
}
}
在action="move_ppl.php?g_id ='. $_GET['g_name'] . '"