Required to output (for print) generated barcodes of selected products in A4 paper format.
I finished all other parts of project, but can’t figure out, how can I output, 5×13 table with barcodes. My barcodes are in PNG image format.
- Is that possible with standard PHP libraries? (I’m using shared hosting, so I can’t install additional php libraries.)
- Which is possible or good for this purpose: to output PDF or HTML?
Which is optimal? - Any other suggestions?

The size of your table will depend on the resolution.
PDF would be optimal as there is so much variation in how different browsers render HTML/CSS. You can use a class called FPDF to generate those if you are down for a slight learning curve. There is also the built-in PDFlib in PHP you could try.