how can i set the session id (SID) without cookies and errors like this....
Warning: Cannot send session cookie - headers already sent in /home/bian.ch/htdocs/test/sess_id.php3 on line 14
Warning: Cannot send session cache limiter - headers already sent in /home/bian.ch/htdocs/test/sess_id.php3 on line 14
with this code as follow:
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>Session ID</title>
</head>
<body>
<?php
session_start ();
echo"<a href=\"sess_id.php3?.SID\">Ir a la pagina</a>";
$id = session_id();
echo "ID: $id"
?>
<br>
<input type="text" name="<?echo session_name()?>" value="<?echo session_id()?>">
</body>