卡在错误代码中调用未定义函数mysql_query()。我该做什么?

时间:2018-08-04 11:44:38

标签: php web-deployment

这是我正在尝试运行的错误。无论尝试做什么,我都会不断遇到相同的错误

<?php
                    if(empty($item_barcode))
                    {

                    }else
                    {

                     $sql=mysql_query(" select * from item where barcode_id = '".$_POST['item_barcode']."' order by id  DESC limit 1")or die(mysql_error());
                    while($result=mysql_fetch_array($sql)){
                        $barcode_id = ''.$result['barcode_id'].''; 
                        $item = ''.$result['item'].''; 
                        $price = ''.$result['price'].''; 
                        $image = ''.$result['image'].''; 
                        }
                    ?>

0 个答案:

没有答案