Exemplo n.º 1
0
function getSongs()
{
    // Queries the song database and returns all results
    $sql = q("SELECT * FROM lib_songs");
    return getSqlArray($sql);
}
Exemplo n.º 2
0
function getSqlColumn($sql, $field = '', $file = '', $line = '')
{
    return getSqlArray($sql, $field, $file, $line);
}