Hallo,
"&" muß korrekterweise als "&" escape-t werden, also
http://www.blablub.de/index.php?id=1203&beitrag=45
Ich mache das allerdings selber nicht. ;-)
Dann probiere mal folgendes aus:
<A HREF="paratest.php?a=5©=6®=7">Test</A>
Ausgabe: 5©=6®=7
<A HREF="paratest.php?a=5©=6®=7">Test</A>
Ausgabe:
5
6
7
In der test.php steht:
<?php
print $a."<br>\n";
print $copy."<br>\n";
print $reg."<br>\n";
?>
MfG, Thomas