我有一个csv文件,该文件具有不同的付款方式,来自EPOS系统。 Somethimes它不包括下面列出的所有不同付款方式。看起来像这样
Payment type,Payment transactions,Payments amount
Card Payment,6,110.3
Cash,5,59.1
Online Order,2,59.4
Voucher,1,19.5
我正在尝试通过PHP将“付款金额”获取到MYSQL数据库中,并放入包含“付款类型”这样的列的单行中,
| transaction_id | Card Payment | Cash | Online Order | Voucher |
-----------------------------------------------------------------
| 12-12-19 | 110.30 |59.10 | 59.40 | 19.50 |
-----------------------------------------------------------------
我已经通过following the tutorial here将数据存储到数据库中,但是在将数据存储到一行时遇到了问题。有人可以指出我正确的方向。