Reputation: 1899
I had soluation of displaying video on my company site and my manager told me to add all videos in web site as list and didvid it list to (recent videos,most view,) pleas I want any one help me how can I do this?
note see this link http://www.yallakora.com/arabic/YKChampions/EmbedListing.aspx?region=
Upvotes: 5
Views: 307
Reputation: 26
define your sorting order as a combination of # of views or last seen date or a weighted/filtered combination of the two factors. Essentially once you can write it on paper the sorting you want it is trivial after that
Upvotes: 0
Reputation: 17931
I assume that you are storing Video information into some DB/flat file.
Now along with the video information you will have to save the date when the video was added
and ViewCount
this is to be incremented each time that video is being viewed.
Now to show Most recent you can simply pick up the videos with descending order of the date they were added. To show most viewed pick up videos with descending order of their ViewCount
Upvotes: 7