PHP Schleife: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
Keine Bearbeitungszusammenfassung |
Keine Bearbeitungszusammenfassung |
||
Zeile 1: | Zeile 1: | ||
<pre> | |||
<? | |||
echo "<h3>SESSION</h3>"; | echo "<h3>SESSION</h3>"; | ||
echo "<table border=1 width=50%>"; | echo "<table border=1 width=50%>"; | ||
Zeile 9: | Zeile 11: | ||
} | } | ||
echo "</table>"; | echo "</table>"; | ||
?> | |||
</pre> |
Version vom 13. Januar 2006, 21:10 Uhr
<? echo "<h3>SESSION</h3>"; echo "<table border=1 width=50%>"; echo "<tr bgcolor=\"#3399FF\">"; echo "<td><b><font color=\"#FFFFFF\">Variable Name</font></b></td>"; echo "<td><b><font color=\"#FFFFFF\">Value</font></b></td></tr>"; while(list($key, $val) = each($_SESSION)) { echo "<tr><td>$key</td><td><b>$val</b></td></tr>"; } echo "</table>"; ?>