php get は値を取得できません
//自動ジャンプ
//header("Content-Type:text/html; charset=utf-8");
$type=$_GET['type'];
$ID=$_GET[ id ];
$url="show_user.php";
$id=$_POST["id"];
//$title= $_POST["title"];
$password = $_POST["password"];
//date_default_timezone_set("Asia/Shanghai");
//date.timezone オプションが php.ini に追加されました。デフォルトではオフになっています。つまり、表示される時刻は (どの PHP コマンドを使用しても) グリニッジ標準時であり、北京時間とはちょうど 8 時間異なります。 :s" );//現在時刻を取得します
$con = mysql_connect("localhost","root","123");
if(!$con)
{
die( 'データベースに接続できませんでした ! '.mysql_error());
}
//header("Content-Type:text/html; charset=utf-8");
mysql_select_db("test" 、$con);
mysql_query("set names 'utf8'",$con);
echo "中国";
switch ($type)
{
case edit:
$sql = "更新テストセット id='$id',pass='$password' where id='$id'";
$qu = mysql_query($sql,$con);
if( $qu)
{
echo "";
exit;
}
Break;
case add:
if(!mysql_query("INSERT INTO test (id,pass) names ('$id','$password')") )
{
die('データ挿入に失敗しました!'.mysql_error());
}
else
{
echo "";
exit;
}
Break;
case del:
$sql = "delete from test where id =' $ID'";
$qu=mysql_query($sql,$con);
if($qu)
{
echo "";
exit;
}
Break;
}
/*
// データベースに挿入します
*/
?>
なぜ $_GET['type' ] 値を取得できません
-----解決策---------
switch ($type){
case "edit":
//引用符を追加