Message :
Users
Showing 1 to 5 of 91 entries

PDOCrud supports both left join and inner join operation. If you want to apply master, detail table operation where master table contains single record and details table contains multiple records, use LEFT JOIN else INNER JOIN.
$pdocrud = new PDOCrud(); $pdocrud->crudTableCol(array("first_name","last_name","user_name","gender")); $pdocrud->joinTable("user_meta", "users.user_id = user_meta.user_id", "LEFT JOIN"); echo $pdocrud->dbTable("users")->render();