从URL中获取变量的数据到表单操作

时间:2016-06-23 05:57:08

标签: php url

我正在尝试编写一个代码,我需要将一个变量中的数据从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">';

1 个答案:

答案 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'] . '"

之后删除引用