hmmmmm
why not just have two fields, one for the name of the movie, and the other for the review?
then when you query the databse, if you want all reivews for movies that start with 'A', you say "SELECT * FROM movie_reviews WHERE name LIKE 'a%';
now, separate issue: to change "The Village" into "Village, The" (for internal purposes-- you can display it as either one to the user) it's just a matter of looking for 'The' at the front of a string and moving it to the end as appropriate. something like this would do it:
$t = 'The Village';
if(strtolower(substr($t, 0, 4)) == 'the ') {
$t = substr($t, 4).', '.substr($t, 0, 4);
}
echo $t;
best
Eric