我正在制作一个联系人页面,您可以在其中将联系人添加到一本书中,查看它们,并在不同的分组中查看它们,等等......
我有一组称为“组”的单选按钮,我想知道我是否使用正确的代码来选择单选按钮并将其提交到我的“myPhpAdmin”表。我已经尝试如下:
<?php
session_start();session_destroy();
session_start();
if( $_GET["newFname"] && $_GET["newLname"] && $_GET["newPhone"] && $_GET["newEmail"] && $_GET["newAddress" ] && $_GET["group"] value (or $_POST) )
{
if($_GET["regpass1"]==$_GET["regpass2"])
{
$servername="**********";
$username="********";
$pass="********";
$conn= mysql_connect($servername,$username,$pass)or die(mysql_error());
mysql_select_db("******",$conn);
$sql="insert into Contacts (newFname,newLname,newPhone,newAddress,group) values('$_GET[newFname]','$_GET[newLname]','$_GET[newPhone]','$_GET[newEmail]','$_GET[newAddress]','$_GET[group] value (or $_POST)')";
$result=mysql_query($sql,$conn) or die(mysql_error());
print "Contact has been added";
} else print "ERROR: Passwords Don't Match...";
}else print"ERROR: Invaild Input Data...";
?>