Ich habe jetzt ein weiteres Problem:
Das funktioniert irgendwie bei mir nicht... woran liegt das?
PHP:
<html>
<head>
<title>xxx</title>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1">
<script type="text/javascript">
<!--
function trailer()
{
trailer =
window.open("trailer.html", "Trailer", "width=562,height=378,left=231,top=195");
trailer.focus();
}
//-->
</script>
</head>
<body>
(Hier findet noch eine SQL-Abfrage statt)
<table>
<?php if (file_exists('../trailer/'.$row['Dateiname'].'.wmv')) {
echo "<tr><td colspan='2'><a href='javascript:trailer()'>Trailer</a></td></tr>";
}
?>
</table>
</body>
</body>
</html>
Das funktioniert irgendwie bei mir nicht... woran liegt das?