- or download this
$s = $h->prepare(/select * from table where a = ?/);
$s->execute($h->quote("myvalueforcolumna"));
- or download this
$s = $h->prepare(q/select * from table where a = / . $h->quote("myva
+lueforcolumna");
- or download this
select col1, col2, col3 from tab_name where (? is null or foo = ?) a
+nd (? is null or bar = ?) and (? is null or baz = ?)