Grid element, element adjustment, you do not need a table.
create a grid:
parameter:
text - headline, (can be empty, no head background will be created).
array - array with elements. If cell is a string, it will be converted into label element automatically. A 1 will be converted into "true".
name - optional. Its highly recommended to use unique identifiers to avoid side effects.
function setDiv($div) - specifies the css class of a div which will be wrapped around the table. If it is empty no div will be created. HTML only. Usage: $myTable->setDiv("myclass"); HTML only. "meta" => array(...) - optional. Indicates the width of the columns.
example:
$myArray = array( array( array( "line 1", "line 2", ) ), array("City:",$ippfp->createText("",20,"city")), array("Phone:",$ippfp->createText("",20,"phone")), array("Description:",$ippfp->createTextarea("",20,"description")), ); $myGrid = $ippfp->createGrid("",$myArray,"mygrid");