// 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();
谢谢您的帮助。