I have noticed something in the code, which goes something like this:
Code:
1. $movie_details .= <<<EOD
2. <tr>
3. <td><a href="movie_details.php?movie_id=$movie_id"
4. title="Find out more about $movie_name">$movie_name</td>
5. <td>$director</td>
6. <td>$leadactor</td>
7. </tr>
Now if you look at line number 3 it starts with <a> but have no endings in line nr. 4
I have tryed it in my browser and the code didn't produce any error but i just thought
it would be better with ending tags...