所以我有这段代码可以上传图像并调整其大小,并保存两者

if(isset($_POST['submit']))
{


        $sql="SELECT MAX(event_id) AS event_id FROM evenimente";
        //$result=mysql_query($sql);
        $prefix=mysql_query($sql);


        $file=$_FILES['image']['tmp_name'];
        $file2=$_FILES['image']['tmp_name'];

        $image= addslashes(file_get_contents($_FILES['image']['tmp_name']));
        $image_name= addslashes($_FILES['image']['name']);
        //
        $sizes = array();
        $sizes['100'] = 100;



        list(,,$type) = getimagesize($_FILES['image']['tmp_name']);
        $type = image_type_to_extension($type);

        move_uploaded_file($_FILES['image']['tmp_name'], 'images/'.$prefix.$type);

        $t = 'imagecreatefrom'.$type;
        $t = str_replace('.','',$t);
        $img = $t('images/'.$prefix.$type);

        foreach($sizes as $k=>$v)
        {

            $width = imagesx( $img );
            $height = imagesy( $img );

            $new_width = $v;
            $new_height = floor( $height * ( $v / $width ) );

            $tmp_img = imagecreatetruecolor( $new_width, $new_height );
            imagealphablending( $tmp_img, false );
            imagesavealpha( $tmp_img, true );
            imagecopyresized( $tmp_img, $img, 0, 0, 0, 0, $new_width, $new_height, $width, $height );

            $c = 'image'.$type;
            $c = str_replace('.','',$c);
            $c( $tmp_img, 'images/th/'.$prefix.$type );

        }
        $location="images/" . $prefix.$type;
        $sql="INSERT INTO evenimente (event_data, event_datasf, event_titlu, event_detalii, event_poza) VALUES      ('". $_POST['data'] ."', '". $_POST['datasf'] ."', '". $_POST['titlu'] ."', '". $_POST['detalii'] ."', '$location')  ";
    mysql_query($sql);
    //$prefix =mysql_insert_id();
    include 'include.html';
    echo 'OK!!!<br /> Redirecting';
    echo "<meta http-equiv='refresh' content='1;adauga_eveniment.php'>";




}






                                }


所以代码“作品” ...我有这个问题,我需要用the event_id保存图像。但是我不能让$prefix记住我数据库中的最大ID,我也不知道为什么...
希望你能理解。
我无法使用mysql_insert_id();,因为ID是在aql提交后生成的,并且我需要在此之前加上前缀...而MAX无法正常工作...
我正在使用event_id作为主键...

干杯

最佳答案

您的语法正确:SELECT MAX(event_id) AS event_id FROM evenimente

问题是您想知道event_id在表中存在之前。

建议:

1)“插入”新行

2)“选择”结果event_id

3)“更新”行

也:

您正在使用旧的,不推荐使用的mysql API。请熟悉新的mysqli / PDO API中的一个或两个。并且请考虑使用prepared statements。它们更加高效...并且有助于减轻SQL注入攻击的风险。

关于php - 获取SQL中自动增量列的最大值,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/14733232/

10-11 03:20