$pdocrud = new PDOCrud(); $pdocrud->crudTableCol(array("product_name","product_line","product_image","product_url")); //set product_image column to type image and set width and height (you can also set any attribute like style, class) $pdocrud->tableColFormatting("product_image", "image",array("width" =>"100px","height"=>'100px')); //set product_url column to type url and set it's text (you can also set any attribute like style, class) $pdocrud->tableColFormatting("product_url", "url",array("text" =>"View product","target"=>'_blank')); echo $pdocrud->dbTable("products")->render();