echo "<a href="sess.php?PHPSESSID=" . session_id() . ">";
oder:
echo "<a href="sess.php?PHPSESSID=" . $PHPSESSID . ">";
oder:
session_name("sessid");
session_start();
echo "<a href="sess.php?sessid=" . $sessid . ">";
echo "<a href="sess.php?<?PHP echo session_name() . "=" . $sessid . ">";
echo "<a href="sess.php?<?PHP echo session_name() . "=" . session_id() . ">";
Mir fallen da jetzt noch 1000 andere Möglichkeiten ein.
MfG, André Laugks