die Hochkommas und Dollarzeichen fehlen:
PHP-Code:
<?
echo $array['eins']; // gibt "Januar"
?>
<?php
session_start();
if ( isset($_SESSION['zeit']) && isset($_SESSION['anzahl']) )
{
$zeit = $_SESSION['zeit'];
$anzahl=$_SESSION['anzahl'];
if (time() - $zeit > 3) $anzahl=0;
}
else
{
$anzahl=0;
$zeit = -1;
}
$anzahl = $anzahl + 1;
$_SESSION['anzahl']=$anzahl;
$_SESSION['zeit'] = time();
echo "Das ist der $anzahl.te Aufruf in Reihe<br />";
// Als Bonus Zeitdifferenz bestimmen
$abstand = time() - $zeit;
echo "Der vorhergehende war vor $abstand Sekunden .";
?>
$password = '';
while (strlen($password)<8) $password .= chr( rand( ord('a'), ord('z') ) );
$file_handle = opendir( $folder );
while ( $file = readdir( $file_handle )) {
if ( is_file( $file ) ) {
if ($file != '.' && $file != '..') {
echo '<a href="?image='.$file.'">'.$file.' anschauen</a>' ;
}
}
}
closedir( $file_handle );
Kommentar