I have a descri_produto
column that would be the product description.
The problem is that I can not separate the description into an array.
$cat = $_POST['categoria'];
$sql= "SELECT DISTINCT descri_produto, cat_produto FROM produtos WHERE cat_produto LIKE '".$cat."'";
$result= mysqli_query($conn, $sql);
if (mysqli_num_rows($result) > 0){
while ($row = mysqli_fetch_assoc($result)){
print_r(explode(',',$row['descri_produto']));
}
}
Example column of product_description column
Espessura: 6mm,Cor: Incolor
You are currently returning:
Array
(
[0] => Espessura: 6mm
[1] => Cor: Incolor
)
And I need something like:
Array
(
[Espessura] => 6mm
[Cor] => Incolor
)