// Gets a single row from $from where $where is true
function Select($from, $where='', $orderBy='', $limit='', $like=false, $operand='AND',$cols='*'){
Let's say I created the object -
$oMySQL = new MySQL();
$oMySQL->Select();
このクエリを実行していた場合- SELECT * FROM users where email='$email'"
私は挿入と他のすべてを行うことができます-しかし、私はどのように作成するか混乱していますselect();
助けてくれてありがとう。