Habe folgendes Problem und weiss nicht woran es liegt.
Local ists einwandfrei, auf dem Server werden die Session daten nach dem back link nicht weiterbenutzt, d.h. z.B. $HTTP_SESSION_VARS['in'] ist leer
Beide php 4.0.6, Apache 3.1.7
Local: Win2000
Server: Linux
code:
Local ists einwandfrei, auf dem Server werden die Session daten nach dem back link nicht weiterbenutzt, d.h. z.B. $HTTP_SESSION_VARS['in'] ist leer
Beide php 4.0.6, Apache 3.1.7
Local: Win2000
Server: Linux
code:
PHP-Code:
<?php
session_start();
if(!empty($HTTP_POST_VARS["try"])){
$HTTP_SESSION_VARS['in'] = 1;
}
if(!$HTTP_SESSION_VARS['in']){
?>
<form method="post" action="<?php echo $HTTP_SERVER_VARS['PHP_SELF'];?>?<?php echo SID?>">
<input type="hidden" name="try" value="1">
<table width=175 style="border:solid 1Px;border-color:black;" cellpadding=0 cellspacing=0>
<tr><td> <small>Name</small></td>
<td><input name="name" style="width:100Px;"></td></tr>
<tr><td></td><td><input type="submit"></td></tr>
</table>
</form>
<?php
}
?>
<a href="<?php echo $HTTP_SERVER_VARS['PHP_SELF'];?>?<?php echo SID;?>">back</a>
Kommentar