Is it posible to bindParam in the order by portion of a sql statement. For example, is the following possible?
select whatever from table where age > :age order by :user_specified_order_by_field_name_here
and if not, what's the recommended way to make sure that the user_specified_order_by_field_name_here
does not contain SQL injection code?