0
Because most people don't enter details about individual songs the song pages are pretty much just a music player "bar" and social bookmark icons. I would like to add album details to the pages of all the songs that appear on that album. On the album page you can use:
[php start]
echo $this->album->review;
[php end]
to display the albums summary.
What do I need to add to the song page's default.php (and/or other file) to display the song's album details with the previous code?
Thanks.
[php start]
echo $this->album->review;
[php end]
to display the albums summary.
What do I need to add to the song page's default.php (and/or other file) to display the song's album details with the previous code?
Thanks.
Responses (4)
-
Accepted Answer
0well, first you would need to retrieve this info from the album's database.
so you actually need to go to /models/song.php and on the MySQL that retrieves song data, you should request also the variable al.review
then you can print it on the song page
you know what I mean? you familiar with MySQL? -
Accepted Answer
Your Reply
Please login to post a reply
You will need to be logged in to be able to post a reply. Login using the form on the right or register an account if you are new here.
Register Here »