0

私がやろうとしているのは、いくつかの情報をデータベースに挿入することです。最初のページは次のとおりです。

$(document).ready(function() {

    //alert('I am ready to use uploadify!');
    $("#file_upload").uploadify({
        'uploader': 'uploadifyit/uploadify.swf',
        'script': 'uploadifyit/uploadify.php',
        'cancelImg': 'uploadifyit/cancel.png',
        'folder': 'images',
        'auto': false, // use for auto upload
        'multi': true,
        'queueSizeLimit': 4,
        'onQueueFull': function(event, queueSizeLimit) {
            alert("Please don't put anymore files in me! You can upload " + queueSizeLimit + " files at once");
            return false;
        },
        'onComplete': function(event, ID, fileObj, response, data) {
            // you can use here jQuery AJAX method to send info at server-side.
            $.post("insert.php", { name: fileObj.name }, function(info) {
                alert(info); // alert UPLOADED FILE NAME
            });
        }
    });



});

</script>
</head>

<body>
<?php
$img_id=$_REQUEST['img_id'];
?>
<form id="form1" name="form1" action="">
<input type="file" name="file_upload" id="file_upload" /><br />
<input type="hidden" value="<? echo $img_id ;?>" name="image_id"  />

<a href="javascript:$('#file_upload').uploadifyUpload();">Upload File</a>
</form>

処理フォームは次のとおりです。

if(isset($_POST)) {

        //echo $_POST['name'];
        $fileName = $_POST['name'];
        $id = $_REQUEST['image_id'];


        mysql_query("INSERT INTO tbl_images(img_file,img_gal_id) VALUES('$fileName','$id')");
        $inserted_id = mysql_insert_id($dbc);

        if($inserted_id > 0) { // if success
            echo "uploaded file: " . $fileName;
        }

    }

$fileName は投稿できますが、$id は投稿できません。

4

2 に答える 2

1

処理フォームPOSTの代わりに使用し、ソフト/MMK が推奨するように JSON で値を渡します。非表示のフィールドと変数の宣言を自分で保存し、値を に挿入できます。REQUESTimage_id$.post

$.post("insert.php", 
  { 
    name: fileObj.name, 
    // Add the image_id value to post to insert.php
    image_id: <?php echo $_REQUEST['img_id']; ?> 
  ...

次に処理中:

$fileName = $_POST['name'];
// Grab the posted value.
$id = $_POST['image_id'];
于 2012-08-20T14:10:01.413 に答える
0

このようにしてみてください

'onComplete': function(event, ID, fileObj, response, data) {
        // you can use here jQuery AJAX method to send info at server-side.
        $.post("insert.php", { name: fileObj.name,image_id:ID}, function(info) {
            alert(info); // alert UPLOADED FILE NAME
        });
    }
于 2012-08-20T13:50:06.370 に答える