You need a collection of movie titles, not just a single one. For example, you could make a vector of movies.
After line 3 add #include <vector>
After line 11 add vector<movie_t> movies;
After line 44 add movies.push_back(mine);
Oh, line 59 is wrong. It should be while (choice != 6);