You cannot run two scripts at the same time for the same header request from the user.
But for this, you can have each videos having a unique ID which AUTO INCREMENTs. Then have something like a
GET variable. I hope that you know how to pass and extract GET variables from the url.
So each time you fetch the video title, you also fetch the video ID.
So something like this for your above code
PHP Code:
<?php
echo "<tr align='left' height='30' bgColor='#69F'>";
echo "<td>" . $row['DATE'] . "</td>";
echo "<td>" . $row['SERVICE'] . "</td>";
echo "<a href='watch.php?id={$row['id']}'<td>" . $row['TITLE'] . "</td>";
echo "</tr>";