好的,两天后的第二个问题......我可能在这里犯了一个新手错误,但我被卡住了。
试图将域名插入到“名称”列下的表中。我所有的变量都会回显,所以我知道它们正在被传递和设置。
插入内容如下:
$newDomain = $_POST['newDomain']; //Get domain name
$newDomain_query = mysql_query("INSERT INTO virtual_domains (name) VALUES ($newDomain)");
header("Location: domain_detail.php?domain=".$newDomain);
我尝试了许多编写此脚本的方法,但是每次我在包含以下内容时都会得到相同的结果:
or die(mysql_error)
在脚本中。查询没有运行,当我取出模具部分时,它只是跳转到标题位置。