php上传类上传错误

时间:2016-02-24 03:33:05

标签: php

我想上传图片。我使用了这段代码但是没有工作source。你能提供信息吗?

我看了之后,if ($upload->uploaded)然后它没有工作。

## Kategori ##
function kategori() {
    $islem = $_GET['islem']; 

    $post_kadi              = $_POST['kadi'];
    $post_ksef              = sef_link($post_kadi);
    $post_ksira             = trim($_POST['ksira']);
    $post_altkat            = $_POST['altkat'];
    $post_durum             = $_POST['durum'];
    $post_keywords          = $_POST['keywords'];

    $upload = new upload($_FILES['image_field']);
    $upload->file_auto_rename = true;
    $upload->image_resize = false;
    $upload->process('../../resimler');

    $id = $_GET['id'];

    // Gelen Sonuca Göre İşlem Yaptırıyoruz
    if($islem== kaydet) {   
        # Sınıfımızı Başlatıyoruz.

        # Dosya Yüklenmiş mi ?
        if ($upload->uploaded)
        {

            if ($upload->processed)
            {
                $yaz = mysql_query("INSERT INTO kategori (name, sef_name, ust_id, durum, resim, keywords) values ('$post_kadi', '$post_ksef', '$post_altkat', '$post_durum', '$upload->file_dst_name', '$post_keywords') ");
                $upload->clean();
                if($yaz) {
                    Header("Location:../index.php?sayfa=kategori&durum=1");
                }
                else {
                    Header("Location:../index.php?sayfa=kategori&durum=2");
                }
            }
        }
    }
}

0 个答案:

没有答案