dongyang9813 2015-08-25 06:36
浏览 66

用于数据varchar的php substr函数

I have problem, I want to input data Invoice Number, when I try in phpmyadmin version 5.6.16 in my computer its working, but im upload to cpanel phpmyadmin v 5.5 its not working.

Result in V 5.6.16 :

- INV0001
- INV0002
- INV0003

Result in Cpanel/Hosting. V 5.5 :

- INV0001
- INV0001
- INV0001

it's duplicate, how to fix it? Thanks before.

<?php
  $query = "SELECT max(invoice) AS invoice FROM orders";
  $hasil = mysql_query($query);
  $data  = @mysql_fetch_array($hasil);
  $lastinv = $data['invoice'];
  $nextInv= (int) substr($lastinv, 3, 4);
  $nextInv++;
  $char = "INV";
  $newInvoice = $char .  sprintf("%04s", $nextInv);
?>
  • 写回答

2条回答 默认 最新

  • douliaodun9153 2015-08-25 06:48
    关注

    You can try the below code to avoid duplicate records :

    $query = "SELECT max(invoice) AS invoice FROM orders";
    $hasil = mysql_query($query);
    $data  = @mysql_fetch_array($hasil);
    $lastinv = $data['invoice'];
    $nextInv= (int) substr($lastinv, 3, 4);
    $nextInv++;
    $char = "INV";
    
    $i = 1;
    while(true) // eliminating duplicacy
    {
        $newInvoice = $char .  sprintf("%04s", $nextInv);
    
        $query = "SELECT * FROM orders where invoice = ".$newInvoice;
        $hasil = mysql_query($query);
        $data  = @mysql_fetch_array($hasil);
        if(empty($data))
            break;
        $i++;
    }
    
    评论

报告相同问题?

悬赏问题

  • ¥15 msix packaging tool打包问题
  • ¥28 微信小程序开发页面布局没问题,真机调试的时候页面布局就乱了
  • ¥15 python的qt5界面
  • ¥15 无线电能传输系统MATLAB仿真问题
  • ¥50 如何用脚本实现输入法的热键设置
  • ¥20 我想使用一些网络协议或者部分协议也行,主要想实现类似于traceroute的一定步长内的路由拓扑功能
  • ¥30 深度学习,前后端连接
  • ¥15 孟德尔随机化结果不一致
  • ¥15 apm2.8飞控罗盘bad health,加速度计校准失败
  • ¥15 求解O-S方程的特征值问题给出边界层布拉休斯平行流的中性曲线