// 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();
if I was doing this query - SELECT * FROM users where email='$email'"
I can do insert and all the others - But I am confused how to make the select();
Thanks for the help.
$oMySQL.Select('tbl', "tbl.field = 'value'", 'tbl.name', '0,25');