PHP TO C++

how to convert this to C++

PHP CODE:
1
2
3
4
function get_result($sQuery, $db){
    $rs = mysql_fetch_array( mysql_query($sQuery, $db) );
    return $rs;
}
Last edited on
Topic archived. No new replies allowed.