I've tried a few searches, but can't come up with anything similar to what I'm trying. Here's the scoop, bear in mind that I've now been working with PHP for 48 hours...
I'm working on a site for a local small business that wants to run a video delivery service. Kind of like Netflix, but all formats and games, plus delivered by hand. I've already built the browsing engine and the add to queue function.
Queue table in database has Customer_ID, Queue_ID(priority), and Title_ID with primary key based on Customer_ID and Title_ID (prevent customer from queuing same movie twice). I'd like to build a way for a customer to update the queue, including removing items and changing the order of priority, but have hit a mental brick wall.
Anyone have any suggestions on a good approach to such a script? I'm assuming a combination of PHP and a client side script will be neccessary.
Thanks in advance for any input.
I'm working on a site for a local small business that wants to run a video delivery service. Kind of like Netflix, but all formats and games, plus delivered by hand. I've already built the browsing engine and the add to queue function.
Queue table in database has Customer_ID, Queue_ID(priority), and Title_ID with primary key based on Customer_ID and Title_ID (prevent customer from queuing same movie twice). I'd like to build a way for a customer to update the queue, including removing items and changing the order of priority, but have hit a mental brick wall.
Anyone have any suggestions on a good approach to such a script? I'm assuming a combination of PHP and a client side script will be neccessary.
Thanks in advance for any input.