Message :
Orders
Showing 1 to 10 of 57 entries
Parse sql operation allows you to use simple sql queries with crud operation. Simple database queries containing "WHERE", "ORDER BY", "LIMIT" etc can be parsed by our system and you can use it to generate the crud table similar to the other operations. It can't be used against UNION or JOIN operations.
//Added in version 7.1.1 $pdocrud = new PDOCrud(); $pdocrud->setQuery("select id,order_date,customer_name,order_amount from orders where id > 50 order by order_date"); echo $pdocrud->render("PARSESQL");
Showing 1 to 10 of 57 entries