Worked like a charm, but the page it links to, still works on all but the link with astrophe. Here's the snippets for next page after that..
$ID = $_GET['Studio'];
$query = "SELECT * from movies WHERE ID = '$ID' ";
$result = mysql_query($query);
while ($row = mysql_fetch_object($result)){
$studio = $row->Studio;
}
then later:
$query = "SELECT * from movies WHERE ID = $studio";
$result = mysql_query($query);
error message I was getting:
Warning: mysql_fetch_object(): supplied argument is not a valid MySQL result resource in /home/deafdrag/public_html/studio.php on line 95
line 95 is the first line in the while loop after the query