Peter-Jun.: HTML und PHP

Beitrag lesen

Hallo, Leute
Ich habe 2 Datei:
„probe1.html"
<html>
<head>
....
<script type="text/javascript">
<!--
function PopupFenster() {
  F = window.open("probe2.php","Popup","width=300,height=400,location=no, menubar=no, resizable=no, scrollbars=yes, status=no, toolbar=no");

}
// -->
</script>
</head>

<body>
...

<td width="25%" align="center">
      <font color="#00FF00" face="Bart">
      <a href="javascript:PopupFenster('probe2.php?id=1')"><b>München</b></a>
      <a href="javascript:Popupfenster"('probe2.php?id=2')"><b>Berlin</b></a>
     </font>
    </td>
</body>

</html>

und „probe2.php"

<php
echo $id;
?>

Es funktioniert nicht... (localhost, PHP)

Ich bitte um Hilfe