er durchläuft einmal , sagt dann "error", dürfte er aber normal nicht oder ?
beim auslesen der session sagt er sie wäre leer, allerdings funzt die zeile : <meta http-equiv="refresh" content="1; url=prozent.php?p=<?=$_SESSION['p']?>"> .....
danke schonmal im vorraus ...
beim auslesen der session sagt er sie wäre leer, allerdings funzt die zeile : <meta http-equiv="refresh" content="1; url=prozent.php?p=<?=$_SESSION['p']?>"> .....
PHP-Code:
<?
session_start;
if(!isset($p)) { $p = "0"; $SESSION['p'] = "0";} else {
if($_SESSION['p'] != $p) { die("error"); $t = $SESSION['p']; echo "$t";} }
if($_SESSION['p'] > 99) { die("fertig"); }
$einheit = "0.5";
$prozent = $p * $einheit;
?>
<style type="text/css">
<!--
.box1{
background:blue;
padding: 10px;
text-align: center;
position: absolute;
border:1px solid black;
width:<? echo "$prozent"; ?>%;
margin:25% 15px 0 10px;
z-index: 3;}
.text{
background:transparent;
text-align: center;
padding: 1px;
position: absolute;
border:1px solid black;
width:50%;
margin:25% 15px 0 10px;
z-index: 4;
color: red;}
-->
</style>
<center><div class ="box1"></div>
<center><div class ="box2"></div>
<div class ="text">[b]<? $p = $_SESSION['p']; echo "$p"; ?>%[/b]</div></center>
<? $p++;
$_SESSION['p']++;
?>
<meta http-equiv="refresh" content="1; url=prozent.php?p=<?=$_SESSION['p']?>">
Kommentar