Help for this page

Select Code to Download


  1. or download this
    SELECT * FROM mytabel WHERE mycolumn = :VAR1
    
  2. or download this
    $sth->bind_param(':VAR1', $myvalue);
    
  3. or download this
    SELECT * FROM mytabel WHERE mycolumn in (:VAR1)