is there any way to access the variables of this function outside ?
public function selectData($table, $where = null, $wheree = null, $where1 = null, $wheree1 = null) {
$QUERY = mysql_query("SELECT * FROM " . $table . " WHERE '" . $where . "' = '" . $wheree . "' && '" . $where1 . "' = '" . $wheree1 . "'");
$Fetch_Assoc = mysql_fetch_assoc($QUERY);
$Num_Rows = mysql_num_rows($QUERY);
$Fetch_Array = mysql_fetch_array($QUERY);
$Fetch_Object = mysql_fetch_object($QUERY);
}
I need it please !!