Fijiannn Posted January 12, 2014 Share Posted January 12, 2014 Hi I have this code below. I'm using getid3 to get the file name, artist, and title of the songs I have in the $SongsFolder. What I'm trying to do is make the artist and title accessible so I can get this info in my iPhone app for example. I figure I would replace echo with something else but how would I properly do that? I'm really new to PHP and more of an iPhone app developer so a little help would be nice. <?php require_once("getid3/getid3.php"); $getID3 = new getID3; $SongsFolder = "Songs"; $Songs = glob($SongsFolder."/*.mp3"); foreach ($Songs as $Song) { set_time_limit(30); $ThisFileInfo = $getID3->analyze($Song); getid3_lib::CopyTagsToComments($ThisFileInfo); echo 'File name: '.$ThisFileInfo['filenamepath'].'<br>'; echo 'Artist: '.(!empty($ThisFileInfo['comments_html']['artist']) ? implode('<BR>', $ThisFileInfo['comments_html']['artist']) : ' ').'<br>'; echo 'Title: '.(!empty($ThisFileInfo['comments_html']['title']) ? implode('<BR>', $ThisFileInfo['comments_html']['title']) : ' ').'<br>'; } ?> Link to comment https://forums.phpfreaks.com/topic/285315-accessible-from-iphone-app/ Share on other sites More sharing options...
ginerjm Posted January 12, 2014 Share Posted January 12, 2014 Are you writing a php app to run on the web? If so, an echo works on a phone just like a pc or table. If not, please ignore my response. Link to comment https://forums.phpfreaks.com/topic/285315-accessible-from-iphone-app/#findComment-1464980 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.