如何區分單個字符串值?如何分別從mysql數據庫中回顯單個字符串值?
這是在數據庫中的字符串:小:4,介質:2,大型:5,X-大型:4
欲單獨呼應尺寸和數量。例如,我有2列表大小和數量。
<table>
<thead>
<th>Sizes</th>
<th>Quantity</th>
</thead>
<tbody>
<tr>
<td><?=「echo sizes here";?></td>
<td><?=「echo quantity here";?></td>
<tr>
</tbody>
因此,如何能我分別回聲尺寸和數量從數據庫中的單個串??
你想將字符串轉換爲數組嗎? – Rasclatt
在php中,你有'爆炸'和'substr'。使用它們。 – RubahMalam