我有一個POS和需要檢查兩件事情之前,我保存在MySQLPHP檢查,如果不是空的,另一個值GET
銷售代碼以獲取和查詢的信息,我需要
$invoice=mysqli_real_escape_string($db,$_POST['same_invoice']);
$customer=mysqli_real_escape_string($db,$_POST['same_customer']);
如果發票是空的,客戶也是空的,因爲這是發票中的第一個貨物,所以我們分配一個發票號碼,並要求客戶出示標識,發票自動生成,因此我們輸入客戶的ID號碼並保存到MySQL
現在問題
如果客戶要購買我們不需要給訂單新的發票號碼既沒有編號爲2級的產品,但我們必須在MySQL同時檢查
代碼我嘗試,但沒有工作
if($invoice is empty && $customer is also empty)
{ we create new invoice an ask customer for id first time }
if($invoice is empty && $customer is NOT empty)
{ we create new invoice but do not ask customer for id }
else
{ we use the $invoice and $customer comming from the form }
任何想法如何檢查?
您發佈爲「*代碼我正在嘗試*」的內容不是實際代碼,因此我們無法向您反饋爲什麼它不起作用。 – BeetleJuice
也許使用你創建的... – Alex
謝謝,祝你有個美好的一天 – Nokelekele