OKここに、メモを表示する必要のある製品が複数あるという問題があります。製品ごとに以下のコード全体を書き出すことなく、メモを複数の製品にエコーするための最良の方法は何でしょうか?
<?php if ($data['header']['group_code'] == 'R088X') { ?>
<li><span>Printers:</span> Wipe the allocated print area before print application with methylated spirit.</li>
<?php } ?>
私は次のことを試しましたが、うまくいきません...
<?php
$data = array((['header']['group_code'] == 'R088X', 'R129X'));
if (in_array(['header']['category'] == 'R088X', $data)) { ?>
<li><span>Printers:</span> Wipe the allocated print area before print application with methylated spirit.</li>
<?php } ?>
どんな提案もありがたいです:)