0

我想获取 id 数据以将值输入到数据库 First Script,它的工作。但在第二个脚本中不起作用。这是我的第一个脚本

<?php
        include 'connect.php';
        $id_event=$_GET['id_event']; //it's work
        $assign="SELECT * FROM event where id_event='".$id_event."'";
        $show_data=mysql_query($assign);
        while($row=mysql_fetch_row($show_data))
            {

    ?> 

这是我的第二个sript

    $id_event=$_GET["id_event"];
    $track_id = $_POST["track_id"];


    case "upload":
    $action = "upload";
    $values = "'".$track_id."','".$id_event."'"; //this is the problem
    $field = "track_id,id_event";               //$id_event not enter to  database
4

1 回答 1

0

也许您需要使用 $_POST['id_event'] 而不是 $_GET['id_event']

于 2013-06-26T16:58:32.787 回答