0
// 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();

谢谢您的帮助。

4

1 回答 1

1

由于我不知道 Select 函数是如何实现的,我会假设如下:

$oMySQL->Select('users', "email='$email'");
于 2013-07-27T16:07:51.390 回答