Hello, I need to separate the results from the field to get this format “150 00”,“602 00”,“709 00” etc. My Code:
[php]
$sql = “SELECT GROUP_CONCAT(value) AS data FROM wp_cf7_vdata_entry WHERE name
= ‘psc’”;
$result = $conn->query($sql);
if ($result->num_rows > 0) {
while($row = $result->fetch_assoc()) {
echo $row[“data”]; // now 150 00,602 00,709 00
…
[/php]
Thank you for your help!