PHP-Code:
<script type="text/javascript">
function selectSite(site){
document.location.href("index.php?<?=$_SERVER[QUERY_STRING]?>&site="+site);
}
</script>
wie kann ich das fürn Firefox kompatible machen?
<script type="text/javascript">
function selectSite(site){
document.location.href("index.php?<?=$_SERVER[QUERY_STRING]?>&site="+site);
}
</script>
window.location ...
Kommentar