发布不发送变量到下一页

时间:2016-04-25 17:52:40

标签: php forms

我在将值插入我的表后尝试将post变量发送到下一页,Dreamweaver为我生成了这段代码,我尝试调整它以使其工作但没有成功。这是代码

CRGB leds[NUM_leds]; 

1 个答案:

答案 0 :(得分:0)

更改标题功能值。

if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "form")) {

$insertSQL = sprintf("INSERT INTO links (url, ytname, timeout, `unique`) VALUES (%s, %s, %s, %s)",
                       GetSQLValueString($_POST['url'], "text"),
                       GetSQLValueString($_POST['ytname'], "text"),
                       GetSQLValueString($_POST['timeout'], "text"),
                       GetSQLValueString($_POST['unique'], "text"));

  mysql_select_db($database_linkdb, $linkdb);
  $Result1 = mysql_query($insertSQL, $linkdb) or die(mysql_error());

  $insertGoTo = "index.php?url=" . $_POST['unique'];

  header("Location: /".sprintf($insertGoTo));

}