function printQuery($what, $from, $where, $groupby, $orderby, $limit)
{
$ret="select $what from $from where $where";
if ($groupby!='') $ret.=" group by $groupby";
if ($orderby!='') $ret.=" order by $orderby";
if ($limit!='') $ret.=" limit $limit";
$ret.="
";
echo "".$ret;
}
?>
|