Ja Hallo nochmal,
zuerst wünsche ich euch schöne Weihnachten
Jo und dann noch ne Frage an die Runde:
Ich möchte Anhand des Links einer Seite je nachdem wie der QUERY_STRING ist eine SID so anhängen, dass sie immer automatisch entweder als "?" oder "&" angehängt wird
dazu der folgende Code:
Und der dazugehörige HTML Code:
Bitte sagt mir, was ich falsch mache 8-)
Dankeschön!
Also machts Gut
Gruß Robert
zuerst wünsche ich euch schöne Weihnachten
Jo und dann noch ne Frage an die Runde:
Ich möchte Anhand des Links einer Seite je nachdem wie der QUERY_STRING ist eine SID so anhängen, dass sie immer automatisch entweder als "?" oder "&" angehängt wird
dazu der folgende Code:
PHP-Code:
<?php
function setid($uri) {
@session_start();
if (SID != "") {
$p = dirname($_SERVER['PHP_SELF']);
if(!empty($_SERVER["QUERY_STRING"])) {
if(!preg_match("/\?/", $uri)) {
$ur = "http://".$_SERVER['HTTP_HOST']."".$p."/".$uri."?".SID;
} else {
$ur = "http://".$_SERVER['HTTP_HOST']."".$p."/".$uri."&".SID;
}
} else {
if(!preg_match("/\?/", $uri)) {
$ur = "http://".$_SERVER['HTTP_HOST']."".$p."/".$uri."&".SID;
} else {
$ur = "http://".$_SERVER['HTTP_HOST']."".$p."/".$uri."?".SID;
}
}
return $ur;
}
}
?>
HTML-Code:
<!DOCTYPE html> <html> <head> <meta charset="ISO-8859-1"> <title></title> </head> <body> <a href="javascript:window.location='<?php echo setid('index_1.php'); ?>';">test</a> <a href="javascript:window.location='<?php echo setid('index_1.php?step=1'); ?>';">test</a> </body> </html>
Dankeschön!
Also machts Gut
Gruß Robert
Kommentar