I have a page that has a list of Youtube videos. I use an array as below then later in the page I use some other functions to display the title and screen grab of the video down the page. This way I just have to add a new vidoe to the list below and it grabs all the correct info from YouTube:
//exampleX is a youtube video code
$videolist = array(
"example1",
"example2",
"example3",
"example4",
"example5"
);
Over time this list has grown to the point where I need to add some automatic pagination for the videos as the list continues to grow. I've done that once before so I think I can handle that part.
However the customer has some videos that need to stay together on the same page no matter what. I'm not sure how to handle that part.
Any thoughts on this would be appreciated.
Thanks, Chris