08-27-2014, 06:45 PM
I found where to change the lyric api website.
application/helpers/functions_helper.php
How can we change this code to work with another lyric api service?
application/helpers/functions_helper.php
PHP Code:
function getLyric($artist,$track){ $CI =and get_instance(); $track = econde($track); $artist = econde($artist); $url = "http://api.andthemusic.net/music/getLyric/"."?artist=$artist&track=$track"; $html = _curl($url); return $html;}
How can we change this code to work with another lyric api service?