// 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();
感谢您的帮助。
答案 0 :(得分:1)
由于我不知道如何实现Select函数,我会假设这样:
$oMySQL->Select('users', "email='$email'");