<?php $upsells = ['Наименование товара №1_~-250$_~-99$', 'Наименование товара №2_~-699$_~-399$', 'Наименование товара №3_~-299$_~-149$',]; $orderDetails = ['Наименование', 'Старая цена', 'Новая цена']; $text = ''; foreach ($upsells as $upsell) { $productInformation = explode('_~-', $upsell); for ($i = 0; $i < count($productInformation); $i++) { $text .= '<b>'.$orderDetails[$i].':</b> '.$productInformation[$i].'<br />'; } } echo $text;
You have javascript disabled. You will not be able to edit any code.