корзина на php с сесиями

пишу корзина на php. Товар добавляет в корзину, но не отображается в ней, в БД в каждой строке пишет так: введите сюда описание изображения жаловался на эти строки. Помогите пожалуйста решить проблему`

              <td><?= $row['id'] ?></td>
            <input type="hidden" class="pid" value="<?= $row['id'] ?>">
         
            <td><img src="<?= $row['product_image'] ?>" width="50"></td>
            <td><?= $row['title'] ?></td>
            <td>
              <i class="fas fa-rupee-sign"></i><?= number_format($row['product_price'],0); ?>
            </td>
            <input type="hidden" class="pprice" value=<? $row['product_price'] ?>>
            <td>
              <input type="number" class="form-control itemQty" value="<?= $row['qty'] ?>" style="width:75px;">
            </td>
            <td><i class="fas fa-rupee-sign"></i><?= number_format($row['total_price'],0); ?>руб.</td>
            <td>
              <a href="action.php?remove=<?= $row['id'] ?>" class="text-danger lead" onclick="return confirm('Are you sure want to remove this item?');"><i class="fas fa-trash-alt"></i></a>
            </td>
          </tr>`

Ответы (0 шт):