Help for this page

Select Code to Download


  1. or download this
      $s = $h->prepare(/select * from table where a = ?/);
      $s->execute($h->quote("myvalueforcolumna"));
    
  2. or download this
      $s = $h->prepare(q/select * from table where a = / . $h->quote("myva
    +lueforcolumna");
    
  3. 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 = ?)