I want to print mp3 file details like title, artist, album, year, genre.
so I use id3_get_tag
in php . But when I try to run this code it gives me error.
I dont know how to get details of mp3 file .
My php code:
<?php
$tag = id3_get_tag( "file.mp3");
print_r($tag);
?>
When I run this code. I got this error
Fatal error: Call to undefined function id3_get_tag() in C:\wamp\www\uploader\test1.php on line 2