fpdf - i want to use pdf function in php multicell in one line parallel cell text left top align -


How can I use text in the top left in the cell tag if the text block is the main problem in Multicell is I twomulticell Can not use parallel.

  $ pdf-> MultiCell (60, 6, ". $ Line ['special'], 1, '' L ', wrong); $ Pdf- & gt; Cell (40, 50, "" $ line ['volume'], 1.0, "L"); There is no $ ln parameter like cell method in multicell method (just note one side)  

: A multicel internally lays up several cell calls). If you need to live with a multiselle in the same line then you have to do it with your argument eg:

  $ y = $ pdf-> GetY (); $ X = $ PDF- & gt; GetX (); $ Width = 60; $ PDF- & gt; Multicel ($ width, 6, 'special', 1, 'L', wrong); $ Pdf- & gt; Set XY ($ x + width, $ y); $ PDF- & gt; Cell (40, 50, 'Quantity', 1, 0, 'L');  

Comments