上传困难&;使用PHP将图像更新到directory/MySQL

上传困难&;使用PHP将图像更新到directory/MySQL,php,mysql,directory,Php,Mysql,Directory,我可以将图像作为序列化数组上传,这没有问题,但我所需要的只是将原始文件名字符串存储在数据库中,我不确定从何处开始编辑预先存在的代码。这应该更容易,但作为一个PHP新手,我无法让它工作 本质上,我希望能够上传图像,然后在我的网站前端显示它们,这样做: <img src="img/<php echo $config->photo_a ?>"/> photo\u a?>“/> 我现有的代码是: <?php //connect to db // session_s

我可以将图像作为序列化数组上传,这没有问题,但我所需要的只是将原始文件名字符串存储在数据库中,我不确定从何处开始编辑预先存在的代码。这应该更容易,但作为一个PHP新手,我无法让它工作

本质上,我希望能够上传图像,然后在我的网站前端显示它们,这样做:

<img src="img/<php echo $config->photo_a ?>"/>
photo\u a?>“/>
我现有的代码是:

<?php
//connect to db //
session_start();
include('../config.php');
// check for login to use //
if (!$user->authenticated)
{
    header('Location: login.php');
    die();
}
//post form as array using class photo_loader//
if (isset($post->form_action))
{
$a = new photo_loader(false, $db);
$a->name = $post->name;
$image_files = array();
for ($i=1; $i<10; $i++)
{
    if (isset($_FILES['file'.$i]['name']) && $_FILES['file'.$i]['name'] != "")
    {
        $img = new upload($_FILES['file'.$i], M_ENV_SITE_URL, M_ENV_SITE_ROOT);
        $img->set_upload_target("/img/");
        $n = $img->do_upload();

        if (!$n)
        {
            $err = "Image file ".$i." too big or wrong file type.";
        }
        else
        {
            $image_files[] = $n;
            $img->batchResize("/img/", "/img/", $n, array("320x240", "800x600"));
        }
    }
}
if (empty($image_files)) $err = "You must include at least one image.";
$a->value = $image_files;
if (!$err)
{
    $a->create();
    $succ = "Success!";
}
}
?>

使用这样一个简单的表单:

                <form action="" method="post" enctype="multipart/form-data">
                <div class="control-group"><label for="file" class="control-label">Attach Slideshow Images:</label><div class="controls">
                        <?php
                        for ($i=1;$i<10;$i++)
                        {
                            echo "<input name=\"file".$i."\" type=\"file\" value=\"\" id=\"file".$i."\" />";
                        } ?>
                    </div></div>
                     <input type="hidden" name="name" value="photo_a"> 

                <div class="form-actions">
                    <input type="submit" name="form_action" class="btn btn-large btn-primary" value="Save" />
                </div>
            </form>
<?php 

class photo_loader
{
private $properties;
var $db;

function __construct($id, $dbase)
{
    $this->db = $dbase;

    if (is_numeric($id))
    {
        $sql = sprintf(
            "SELECT * FROM minty_config 
            WHERE ID=%d",
            $this->db->clean($id)
        );

        $result = $this->db->query($sql);
        $fields = $this->db->fetch_array($result);

        foreach ($fields as $k => $v)
        {
            $this->properties[$k] = $v; 
        }

        $this->value = unserialize($this->value);
    }
}

function __get($k)
{
    return $this->properties[$k];
}

function __set($k, $v)
{
    $this->properties[$k] = $v;
}

function update()
{
    $sql = sprintf(
        "UPDATE minty_config SET
        name='%s', 
        value='%s'
        WHERE ID=%d",
        $this->db->clean($this->name),
        serialize($this->value),
        $this->ID
    );

    $this->db->query($sql);
}

function create()
{
    $sql = sprintf(
        "INSERT INTO minty_config 
        (name, value) 
        VALUES('%s', '%s')",
        $this->db->clean($this->name),
        unserialize($this->value)       
    );

    $this->db->query($sql);
}

function delete()
{
    $sql = sprintf(
        "DELETE FROM minty_config  
        WHERE ID=%d",
        $this->ID
    );

    $this->db->query($sql);
}
}

?>

附加幻灯片图像:
photo_loader.class.php如下所示:

                <form action="" method="post" enctype="multipart/form-data">
                <div class="control-group"><label for="file" class="control-label">Attach Slideshow Images:</label><div class="controls">
                        <?php
                        for ($i=1;$i<10;$i++)
                        {
                            echo "<input name=\"file".$i."\" type=\"file\" value=\"\" id=\"file".$i."\" />";
                        } ?>
                    </div></div>
                     <input type="hidden" name="name" value="photo_a"> 

                <div class="form-actions">
                    <input type="submit" name="form_action" class="btn btn-large btn-primary" value="Save" />
                </div>
            </form>
<?php 

class photo_loader
{
private $properties;
var $db;

function __construct($id, $dbase)
{
    $this->db = $dbase;

    if (is_numeric($id))
    {
        $sql = sprintf(
            "SELECT * FROM minty_config 
            WHERE ID=%d",
            $this->db->clean($id)
        );

        $result = $this->db->query($sql);
        $fields = $this->db->fetch_array($result);

        foreach ($fields as $k => $v)
        {
            $this->properties[$k] = $v; 
        }

        $this->value = unserialize($this->value);
    }
}

function __get($k)
{
    return $this->properties[$k];
}

function __set($k, $v)
{
    $this->properties[$k] = $v;
}

function update()
{
    $sql = sprintf(
        "UPDATE minty_config SET
        name='%s', 
        value='%s'
        WHERE ID=%d",
        $this->db->clean($this->name),
        serialize($this->value),
        $this->ID
    );

    $this->db->query($sql);
}

function create()
{
    $sql = sprintf(
        "INSERT INTO minty_config 
        (name, value) 
        VALUES('%s', '%s')",
        $this->db->clean($this->name),
        unserialize($this->value)       
    );

    $this->db->query($sql);
}

function delete()
{
    $sql = sprintf(
        "DELETE FROM minty_config  
        WHERE ID=%d",
        $this->ID
    );

    $this->db->query($sql);
}
}

?>